質問があります
select t1.id,t1.col1,t1.col2,t2.col1,t2.col2,sum(t2.col3) as total
From table1 t1
join table2 t2 on t1.id=t2.id
where t1.col =@col
Group by t1.id
そして、それは私にエラーを与えています
t1.col1 は、集計関数にも GROUP BY 句にも含まれていないため、選択リストでは無効です。
group by句で単一の列で複数の列を選択するには?