作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在image_tags
表中,我有很多aaa
标签,只有一个bbb
标签
我想获取带有此标签的行,但基本上是按 IN ('bbb', 'aaa')
的顺序我希望 bbb
标签位于顶部,然后是 aaa
标签,然后按 id desc 排序
我得到了这个,但它不起作用,但我仍然在顶部得到aaa
标签
SELECT image_tags.tag
FROM `image_tags`
WHERE image_tags.tag
IN (
'bbb', 'aaa'
)
ORDER BY FIELD( 'bbb', 'aaa' ) , id DESC
LIMIT 20
最佳答案
我想你想要:
ORDER BY FIELD(image_tags.tag, 'bbb', 'aaa' ) , id DESC
您缺少 field()
的第一个参数。
关于mysql - SELECT WHERE IN (a,b,c) 查询 : sort the results by order of condition (a, b,c),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20828377/
我是一名优秀的程序员,十分优秀!