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コマンドを持っています:select name from criminals where name || surname like '%SH%' order by id;
select name from criminals where name || surname like '%SH%' order by id;
問題は、姓の文字と姓の最初の文字が「SH」を形成するという理由だけで、私の結果には「LambroS」「Hitiris」という名前も表示されることです。どうすれば修正できますか?いずれかがこれらの文字を含む場合、結果を表示したいと思います。
これを試して:
SELECT NAME FROM CRIMINALS WHERE NAME || ' ' || SURNAME LIKE '%SH%' ORDER BY ID;