gpt4 book ai didi

mysql - 可以使与条件匹配的行始终在 MySQL 中保持在最前面

转载 作者:太空宇宙 更新时间:2023-11-03 11:15:31 26 4
gpt4 key购买 nike

我有一个 MySQL 表,如下图所示: enter image description here

现在我想通过将 type=2 始终保持在顶部来选择数据,如下所示: enter image description here

如何使用一条 SQL 语句实现这一点?

最佳答案

SELECT id, 
type,
name,
register
FROM table
ORDER BY CASE type
WHEN 2 THEN 1000000
ELSE id
END CASE DESC

关于mysql - 可以使与条件匹配的行始终在 MySQL 中保持在最前面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5322516/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com