我有桌子x。
x
............
id email first_name last_name
'''''''''''''''''''''''''''''''''''''''
1 [email protected] Martin Robert
2 [email protected]
3 [email protected] 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()中具有first_name和last_name均为空的行。
我的输出如下
.......................................
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/