gpt4 book ai didi

mysql - 如何查找字段中的字符串长度?

转载 作者:行者123 更新时间:2023-11-29 09:20:53 24 4
gpt4 key购买 nike

我相信有一个函数可以用来确定字符串长度,但我在 Google 上找不到它。我想要的是所有大于 255 个字符的行。有人可以解释一下吗?

最佳答案

试试这个:

select *
from table
where length(somefield) > 255;

您的措辞很奇怪,“某行超过 255 个字符”。这可能意味着

select *
from table
where length(somefield1) + length(somefield2) + length(somefield3) > 255;

关于mysql - 如何查找字段中的字符串长度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1844329/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com