INFO: Aggregates and SET Clause in UPDATE Statement (90477)



The information in this article applies to:

  • Microsoft SQL Server 4.2x
  • Microsoft SQL Server 6.0
  • Microsoft SQL Server 6.5
  • Microsoft SQL Server 7.0
  • Microsoft SQL Server 2000 (all editions)

This article was previously published under Q90477

SUMMARY

In an UPDATE statement, an aggregate function cannot appear directly in the SET list. For example, an attempt to execute a query such as,
   UPDATE <table name>
   SET <column name> = count(*)
   FROM <table names>
   WHERE <condition List>
				

generates the following message in 4.2:
An aggregate may not appear in the set list of an UPDATE statement.
(Msg 157, Level 15, State 1).

MORE INFORMATION

When an aggregate appears in the SET list of an UPDATE statement as above, there exists an ambiguity as to whether the associated WHERE clause qualifies the rows to be updated or it qualifies the rows on which to apply the aggregate function. The correct way to do this is:
   UPDATE <table name>
   SET <column name> = (select count(*) from <table name>
                        where <aggregate condition>)
   FROM <table names>
   WHERE <update condition>.
				

This is in accordance with ANSI Specification.

Modification Type:MinorLast Reviewed:2/14/2005
Keywords:kberrmsg kbinfo KB90477