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.
* from table1 where forename, surname = 'Joe Bloggs' を選択しようとしています
明らかに、姓と名はテーブル1の2つの異なる列ですが、このSQLコードを実行するとエラーが発生します:
SELECT * from table1 where forename, surname = 'Joe Bloggs'
私に何ができるかについてのアイデアはありますか?
多分あなたが意味する
SELECT * from table1 where CONCAT_WS(' ',forename, surname) = 'Joe Bloggs'
また
SELECT * from table1 where 'Joe Bloggs' IN (forename, surname)
SELECT * from table1 where forename = 'Joe' AND surname = 'Bloggs'