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.
「State」列から複数の状態を選択するSQLクエリを作成しようとしています...列ではなく値である場合、「where句」に不明な列「Alaska」が表示されるのはなぜですか?
SELECT * FROM Sheet1 WHERE State IN (`Alaska`, `Arizona`)
ありがとう
スティーブ
間違った引用符を使用しています。データの場合、一重引用符が必要です。バッククォートは列とテーブルの名前です。
SELECT * FROM `Sheet1` WHERE `State` IN ('Alaska', 'Arizona')