gpt4 book ai didi

mysql - 使用 where 子句查看 1 列值 3 次

转载 作者:行者123 更新时间:2023-12-01 00:14:01 24 4
gpt4 key购买 nike

是否可以使用 where 子句查看 1 列值 3 次..例如

select Lastname from Emplyee where firstname = 'John' , 'Mike' , 'Harry'

它应该返回类似的值

firstname      lastname
John Moraes
Mike Tan
Harry Potter

提前致谢

最佳答案

您可以在 (v1, v2, v3) 中使用 a。您还需要在 select 子句中使用 firstname 才能将其放入结果集中。

select Firstname, Lastname from Emplyee where firstname in ('John' , 'Mike' , 'Harry')

关于mysql - 使用 where 子句查看 1 列值 3 次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9327360/

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