- 在开发时候,我们经常使用的是默认的排序规则,但在某些特殊情况下,通过指定顺序来进行排序
-- fileld自定义排序时,应该是非主键的,否则主键是无效 SELECT * FROM customer WHERE telephone IN ( '1832xxxx701', '1739xxxx553', '1855xxxx601' ) ORDER BY FIELD( telephone, '1832xxxx701', '1739xxxx553', '1855xxxx601' ) ASC;
来源:https://www.cnblogs.com/fatRabbit-/p/11934975.html