1.group_concat 函数,将查询出来的某列连接起来,默认使用逗号连接。
select group_concat(id) from table;
应用场景:查询出一个表的ID,并用逗号连接,最后将该ID串作为其他表的查询条件,如
select * from other_table where table_id in(select group_concat(id) from table)。
MySql常用函数
最新推荐文章于 2024-04-27 22:38:41 发布
1.group_concat 函数,将查询出来的某列连接起来,默认使用逗号连接。
select group_concat(id) from table;
应用场景:查询出一个表的ID,并用逗号连接,最后将该ID串作为其他表的查询条件,如
select * from other_table where table_id in(select group_concat(id) from table)。