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.
我的“客户信息”表包含一个“名称”列,其中给出了客户的全名(各部分之间有空格)。基本上,我需要找到所有具有 3 部分名称的客户,例如“King George V”或“Duke of York”——也就是说,任何拥有多个名字和姓氏的人。
SELECT * FROM CustomerInfo WHERE length(Custfullname) - length(replace(Custfullname, ' ', '')) >2
这并不完美,它只是选择空格大于 2 的名称