Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的数据库中搜索全名。
但是在我的 mysql 数据库中,我将列设置如下:
如何在 mysql 中合并这些列,我可以搜索全名?可能带有 %LIKE% 属性
使用CONCAT()将列放在一起
select * from your_table where concat(first_name, ' ', inserts, ' ', last_name) like '%search_string%'