gpt4 book ai didi

mysql - SQL 计数开始 xxx 数字

转载 作者:行者123 更新时间:2023-11-29 06:46:19 25 4
gpt4 key购买 nike

我想统计以123开头的记录,我需要用不同的值来统计几次,从123, 789, 567, ...开始,我在第2列中有这些值

 - column1 | column2
- 1234567 | 123
- 5489186 | 135
- 1238756 | 548

SELECT column1, LEFT(column1,3) AS prefijo, column2 COUNT(LEFT(column1 = 123))
FROM DDBB.table

解决方案

SELECT LEFT(llamante,3) prefix, COUNT(*) quantity
FROM CDRcolas.`270`
GROUP BY LEFT(llamante,3)

最佳答案

使用count()函数

select count(*) counts 
from table
where column1 LIKE '123%'

关于mysql - SQL 计数开始 xxx 数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49273392/

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