嗨,我创建了一个包含 2 列的临时表,我想根据 group by 和聚合函数填充列
insert into #temp (TagName,TagIdentifier)
select Tagname ,
(case when charindex(':',TagClassDescription)> 0
then substring(TagClassDescription,1,(charindex(':',TagClassDescription)-1))
end) as TagIdentifier
from EXEC_REP_TransposedTagAttributes
group by Tagname having count(tagname)>1 ;
但它给出了以下错误
列“EXEC_REP_TransposedTagAttributes.TagClassDescription”在选择列表中无效,因为它不包含在聚合函数或 GROUP BY 子句中。
我需要临时表中的两个值,并希望TagIdentifiers
根据count () >1
在这方面需要帮助
谢谢