gpt4 book ai didi

mysql - Sql 案例与案例 Order by

转载 作者:行者123 更新时间:2023-11-29 08:23:27 25 4
gpt4 key购买 nike

select id, username, email, 
case
when username = email then 'true'
else 'false'
end
from users

有没有一种简单的方法可以当 username = email then 'true' as order_colfrom users where case = true

问题是您能否将 case 包装在 AS case 中,然后对其进行排序或在该 case 上使用Where 语句。

最佳答案

 select id, username, email, 
case when username = email
then 'true'
else 'false'
end as usr_is_email
from users
order by usr_is_email

关于mysql - Sql 案例与案例 Order by,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18653394/

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