如何为SUM列分配列名?
即
- select OwnerUserId,SUM(Postscore)
- INTO Experts
- from ...
我收到此错误:
An object or column name is missing or
empty. For SELECT INTO statements,
verify each column has a name. For
other statements,look for empty alias
names. Aliases defined as “” or [] are
not allowed. Change the alias to a
valid name.
我想因为包含SUM结果的列没有名称.
@H_502_20@