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 等...”
这在MYSQL中可能吗?
select * from thetable where id like "%4";
select * from tablename where id regexp '4$'