mysql按照指定的字段中某些字符串进行排序

SELECT * FROM t_role ORDER BY case
WHEN role_name like '%管理员%' then 4
WHEN role_name like '%经办员%' then 2
WHEN role_name like '%复核员%' then 3
end
asc

你可能感兴趣的:(sql,mysql)