您好我有2列的創建臨時表,我想基於按組和彙總功能SQL如何選擇兩個colums在使用聚合函數的臨時表
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 ;
填補列,但它給人的因爲它不是在聚合函數或GROUP BY子句中包含以下錯誤
列「EXEC_REP_TransposedTagAttributes.TagClassDescription」在選擇列表中無效。
我在臨時表需要兩個值,並希望有TagIdentifiers
價值爲基礎的count() >1
我的表需要幫助的這個
感謝
如果您將'TagClassDescription'添加到'group by',它不會給你想要的東西嗎? –