Mysql 技巧

order by条件:

SELECT * FROM tablename 
WHERE id_one=27 OR id_two=27 
ORDER BY 
  CASE WHEN id_one=27 THEN timestamp_one END DESC, 
  CASE WHEN id_two=27 THEN timestamp_two END DESC

  

原文地址:https://www.cnblogs.com/wujixing/p/5364404.html