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.
私は、先頭の後に任意の文字で終わるすべての行をテーブルから選択したいと考えていますabc。この%-Tag でこれを行うことができます。今、同じ、「abc」の後のすべての文字を選択したいのですが/、%. どうすればこれを形成できますか?
abc
%
/
SELECT * FROM table where myColumn LIKE CONCAT( 'abc', '%' );
次のように実行できます。
SELECT * FROM table where myColumn LIKE 'abc%' and myColumn not like '%/%'