如何从mysql中取出字数最多的字段值

如何从mysql中取出字数最多的字段值,第1张

select * from post order by length(content) desc limit 1

这样每次取速度太慢,可以通过before insert的触发器统计数字,然后通过数字索引查询。

// assume field lenofcontent exists in table post

select * from post order by lenofcontent desc limit 1

可以使用case when流程控制函数

例如:

select c,case c when 0 then concat(a,b) when 1 then concat(d,e)

when 2 then f else null end as result from tblName


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/8730750.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-20
下一篇 2023-04-20

发表评论

登录后才能评论

评论列表(0条)

保存