MySQL 查询in操作,查询结果按in集合顺序显示

35次阅读

共计 164 个字符,预计需要花费 1 分钟才能阅读完成。

MySQL 查询 in 操作,查询结果按 in 集合顺序显示 复制代码 代码如下:
select * from test where id in(3,1,5) order by find_in_set(id,’3,1,5′); select * from test where id in(3,1,5) order by substring_index(‘3,1,2’,id,1);

正文完
 0