请教一个sql表table_1的结构如下id name1 张三2 李四3 王五select * from table_1 where id in (1,2)正常的现实是张三李四想要的结果是张三,李四谢谢大家[解决办法]select group_concat(name) from table_1 where id in (1,2)