通过 strlen 从数据库中选择行
Is there a way to select database table rows where a given value is a certain length, for example, less than 5 chars long?
In PHP that would be strlen
.
Is there anything similar in MySQL?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
LENGTH("my_string")
返回字符串的长度(以字节为单位)请记住,字符可以由多个字节组成,就像 UTF-8 中的字符一样。
LENGTH("my_string")
Return the length of a string in bytesKeep in mind that characters can be made up of multiple bytes like those in UTF-8.