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