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.
クエリを実行するにはどうすればよいですか:
SELECT * FROM contacts WHERE MATCH(firstname,middlename,lastname) AGAINST ('Adam','Dustin')
Adam と Dustin のように 2 つの単語を使用すると失敗しますが、1 つの単語を使用すると成功します。
SELECT * FROM contacts WHERE MATCH(firstname,middlename,lastname) AGAINST ('Adam Dustin')