gpt4 book ai didi

mysql - 从表中选择字段 - MYSQL JOIN

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

我有表 x。

x
............
id email first_name last_name
'''''''''''''''''''''''''''''''''''''''
1 a@gmail.com Martin Robert
2 b@gmail.com
3 c@gmail.com Sam Anderson

我正在使用以下查询,输出为:

 select id, CONCAT(first_name, ' ', last_name) from a;

The output is
.......................................
id CONCAT(first_name, ' ', last_name)
'''''''''''''''''''''''''''''''''''''''
1 Martin Robert
2
3 Sam Anderson

我想忽略 CONCAT() 中名字和姓氏均为空的行。

我的输出如下

  .......................................
id CONCAT(first_name, ' ', last_name)
'''''''''''''''''''''''''''''''''''''''
1 Martin Robert
3 Sam Anderson

提前致谢。

最佳答案

这样:

select id, CONCAT(first_name, ' ', last_name) from a where first_name is not null and last_name is not null;

关于mysql - 从表中选择字段 - MYSQL JOIN,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54804122/

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