我的db表如下
testTable
|-----|-------------------|
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
我想查询db以获得字符串包含摄氏或法伦海特的所有I。
查询:
SELECT Id FROM testTable where id in (2,3,4)
AND