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.
IDがfe "4"で終わるすべての行を選択する方法を探しています。検索結果には、「4,14,24,34,44,54,64 etc...」に続く行のみが含まれている必要があります。
これは MYSQL で可能ですか?
select * from thetable where id like "%4";
select * from tablename where id regexp '4$'