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.
文字 'th' がテーブル emp の列 enames にあるかどうかを照会しようとしています。
コマンドを使用します
select ename from emp where ename like '%th';
ただし、SQL では行が選択されていないと表示されます。
助言がありますか?
編集:
解決した
これは最終的に機能しました。
SELECT * FROM EMP WHERE ENAME LIKE '%TH%';
手伝ってくれてありがとう!
試す:
where UPPER(ename) like '%TH%';
where ename like '%t%' or ename like '%h%';
または正規表現で:
where regexp_like(ename, '[th]');