So come creare una tabella pivot in mysql (vedere l'esempio di codice seguente), ma cosa succede se il numero di colonne nella tabella pivot è molto grande e non voglio digitare 2000 o così tagnames ? - C'è un modo per avere quella lista generata? Molte grazie in anticipo.tabella pivot in mysql
drop table pivot;
create table pivot SELECT time,
max(if(tagname = 'a', value, null)) AS 'a',
max(if(tagname = 'b', value, null)) AS 'b',
max(if(tagname = 'c', value, null)) AS 'c'
FROM test where tagname in ('a','b','c')
GROUP BY time;
select * from pivot;
sguardo a Questo articolo. http://buysql.com/mysql/14-how-to-automate-pivot-tables.html – GeoGo