gpt4 book ai didi

mysql - 有没有更简单的方法来编写这个查询?

转载 作者:行者123 更新时间:2023-11-29 11:43:16 24 4
gpt4 key购买 nike

我在 MySQL 中有一个查询执行一些身份验证检查,但它很长。我想知道是否有另一种方法可以缩短/简化它,但实际上所有子句都是必需的。

select nickname from nicknames where nickname = '$nick' and password = '$md5pass' 
union
select '$nick' as nickname from nicknames AS t1 where not
(nickname = '$nick' and password = '$md5pass')
and not exists
(select 1 from nicknames where nickname = '$nick')

最佳答案

这个怎么样?

select coalesce(max(nickname), '$nick')
from nicknames
where nickname = '$nick' and password = '$md5pass';

关于mysql - 有没有更简单的方法来编写这个查询?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35397708/

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