gpt4 book ai didi

mysql - 考虑到两列,如何做一个 LIKE?

转载 作者:IT老高 更新时间:2023-10-28 23:59:04 26 4
gpt4 key购买 nike

我有一个包含两列 first_namelast_name 的客户表。

如何在查询中使用 LIKE 以同时从两列获取数据?

例如:

SELECT CONCAT(first_name, ' ', last_name) as 'full_name' 
FROM customer WHERE full_name LIKE 'John D%'

我试过了,它告诉我 full_name 列不存在。

最佳答案

SELECT CONCAT(first_name, ' ', last_name) as 'full_name' 
FROM customer WHERE CONCAT(first_name, ' ', last_name) LIKE 'John D%'

关于mysql - 考虑到两列,如何做一个 LIKE?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7027450/

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