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.
こんにちは、このような SQLite クエリを構築する可能性はありますか SELECT * FROM master WHERE (age=1 OR age=4) AND WHERE city LIKE '%Bo%'
SELECT * FROM master WHERE (age=1 OR age=4) AND WHERE city LIKE '%Bo%'
このクエリの正しいバージョンですか、それとも 2 つの列に対するクエリは不可能ですか?
はい。ただし、キーワードWHEREは 1 回しか使用できません。次のように条件を組み合わせるだけです。
WHERE
SELECT * FROM master WHERE (age=1 OR age=4) AND city LIKE '%Bo%'