私のdbテーブルは次のとおりです
テストテーブル
|-----|-------------------|
Id comment
2 | 20 degree celsius
3 | 30 degree Farenheit
4 | 40 degree Farenheit
5 | sometime
6 | plain text
7 | plain text
8 | plain text
文字列に摂氏または華氏が含まれるすべての ID を取得するためにデータベースにクエリを実行したい
クエリ:
SELECT Id FROM testTable where id in (2,3,4)
AND comment like '%celsius%' or comment like '%Farenheit%'
しかし、このクエリは、条件で提供したIDではなく、すべてのIDをチェックしますか? in Condition の id のみを照会する方法は?