Transpose a table using query in Access
问题 I have the table1, i want to transpose it as shown in table1_1, can anyone tell me the query/function that can be used to do this table 1 FileName ObjectName Column1 Column2 Column3 Column4 Column5 F1 Line1 A B C D E F1 Line2 F G H I J F1 Line3 K L M N O table1_1 FileName ObjectName Column Data F1 Line1 Column1 A F1 Line1 Column2 B F1 Line1 Column3 C F1 Line1 Column4 D F1 Line1 Column5 E F1 Line2 Column1 F F1 Line2 Column2 G F1 Line2 Column3 H F1 Line2 Column4 I F1 Line2 Column5 J F1 Line3