上面写错了
1.导入excel文件
create table temp(时间段 c(10),A c(10),b c(10) c c(10))
use temp
append from 文件名.xls xl5
2.转换文件格式
select 时间段,'a' 内容,a 百分比 from temp into table bak1
select 时间段,'b' 内容,b 百分比 from temp into table bak2
select 时间段,'c' 内容,c 百分比 from temp into table bak3
select * from bak1 into table temp
use temp EXCLUSIVE
append from bak2
append from bak3