你好,,大哥,SQL如何根据一个字段的某个关键词的前面部分分组查询
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了你好,,大哥,SQL如何根据一个字段的某个关键词的前面部分分组查询相关的知识,希望对你有一定的参考价值。
例子 三星应用社区全新呈现
如根据以上的字符串中的新字按组查询前面的字符(关键词是新)
from 表
group by left('三星应用社区全新呈现',charindex('新','三星应用社区全新呈现')-1)
where charindex('新','三星应用社区全新呈现')>=0追问
消息 156,级别 15,状态 1,第 1 行
关键字 'where' 附近有语法错误。
去掉 where 语句后还是有错误
消息 8120,级别 16,状态 1,第 1 行
选择列表中的列 '矿山管理.dbo.矿山.KSMC' 无效,因为该列没有包含在聚合函数或 GROUP BY 子句中。
不好意思,where 位置不对。结合你的信息改成如下:
select left(矿山管理.dbo.矿山.ksmc,charindex('新',矿山管理.dbo.矿山.ksmc)-1),
其他字段,其他聚合函数
from 矿山管理.dbo.矿山
where charindex('新',矿山管理.dbo.矿山.ksmc)>=0
group by left(矿山管理.dbo.矿山.ksmc,charindex('新',矿山管理.dbo.矿山.ksmc)-1),
其他字段
select left(ksmc,charindex('镇',矿山管理.dbo.矿山.ksmc)-1)
from 矿山管理.dbo.矿山
where charindex('镇',ksmc)>=0
group by left(ksmc,charindex('新',ksmc)-1)
消息 8120,级别 16,状态 1,第 1 行
选择列表中的列 '矿山管理.dbo.矿山.KSMC' 无效,因为该列没有包含在聚合函数或 GROUP BY 子句中。
还是不行 哥哥 可以告诉我你的QQ号码么
select和group by 中都去掉前面的数据库名等。
select left(ksmc,charindex('镇',ksmc)-1)
from 矿山
where charindex('镇',ksmc)>=0
group by left(ksmc,charindex('镇',ksmc)-1)
sql中如何查看某一字段值有几个数值
用分组,组内计数就可以了,意思就是根据字段a的取值进行分组,相同的为一组,在用count进行组内计数select a,count(*)from Agroup by a 参考技术A CREATE proc Full_Search(@string varchar(50))as
begin
declare @tbname varchar(50)
declare tbroy cursor for select name from sysobjects
where xtype= 'u ' --第一个游标遍历所有的表
open tbroy
fetch next from tbroy into @tbname
while @@fetch_status=0
begin
declare @colname varchar(50)
declare colroy cursor for select name from syscolumns
where id=object_id(@tbname) and xtype in (
select xtype from systypes
where name in ( 'varchar ', 'nvarchar ', 'char ', 'nchar ') --数据类型为字符型的字段
) --第二个游标是第一个游标的嵌套游标,遍历某个表的所有字段
open colroy
fetch next from colroy into @colname
while @@fetch_status=0
begin
declare @sql nvarchar(1000),@j int
select @sql= 'select @i=count(1) from ' +@tbname + ' where '+ @colname+ ' like '+ '''%'+@string+ '%'''
exec sp_executesql @sql,N'@i int output',@i=@j output --输出满足条件表的记录数
if @j> 0
BEGIN
select 包含字串的表名=@tbname
--exec( 'select distinct '+@colname+' from ' +@tbname + ' where '+ @colname+ ' like '+ '''%'+@string+ '%''')
END
fetch next from colroy into @colname
end
close colroy
deallocate colroy
fetch next from tbroy into @tbname
end
close tbroy
deallocate tbroy
end
go本回答被提问者采纳 参考技术B 很简单的事情,非得回答的这么复杂干嘛?我来回答一下。
SELECT count(DISTINCT col_name) from table_name;
以上是关于你好,,大哥,SQL如何根据一个字段的某个关键词的前面部分分组查询的主要内容,如果未能解决你的问题,请参考以下文章