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.
如何有效地找到不遵循名字,姓氏模式的名字?我使用我的 SQL id 是主键。
select name from Person where name not like '%,%'
这包括像 firstname 这样有效的模式。我如何摆脱这些结果?
select name from Person where instr(name, ',') = 0