如何从 mysql 数据库字段中检索最后 4 个字符?
为了能够从 PHP 和 mysql 模拟 substr,我想做类似的事情
select * from table where last_four_chars(field) = '.png'
In order to be able to simulate substr from PHP and mysql, I want to do something like
select * from table where last_four_chars(field) = '.png'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
文档有一个与此直接相关的示例。
The docs have an example directly relevant to this.
使用 RIGHT 函数:
您可以使用 SUBSTRING 获得相同的结果:
With RIGHT function :
You can achieve the same result with SUBSTRING :
这个快速查询:
This Fast query: