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 `alerts` WHERE `title` LIKE `%template%`
これにより、タイトルに「テンプレート」という単語が含まれる少なくとも 3 つの結果が返されるはずですが、次のエラーが表示されます: -
私が知る限り、構文的に正しく、正しい列名を呼び出しています。私は何が欠けていますか?
には一重引用符を使用します%template%。
%template%
SELECT * FROM `alerts` WHERE `title` LIKE '%template%'