设置 MySQL SELECT 结果的最大字符串大小

发布于 2024-12-14 01:34:36 字数 93 浏览 1 评论 0原文

我想使用 PHP 限制 MySQL SELECT 的最大大小。我可以使用 PHP 进行某种迭代,但这会降低效率。有没有办法设置要返回的内容的最大字符串大小或字节大小?谢谢。

I want to limit the max size of a MySQL SELECT using PHP. I could some sort of iteration with PHP, but that would be less efficient. Is there a way I can set the maximum string size or byte size of something to return? Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蓝海 2024-12-21 01:34:36

怎么样

SELECT SUBSTR(myString, 1, 10) as myString from myTable 

编辑:

然后你想要

SELECT myString from myTable where length(myString) < 11

你还有char_lengthbit_length

What about

SELECT SUBSTR(myString, 1, 10) as myString from myTable 

EDIT:

Then you want

SELECT myString from myTable where length(myString) < 11

You also have char_length and bit_length.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文