select t_date,t_name,${col} from test_a
这个sql里面我想取col这个动态列当值,应该怎么取
select t_date,t_name,${col} as 别名 from test_a
把这个别名作为你的系列就行了