Skip to content
Advertisement

Need to Update based on ID and Date

I have the following SQL statement, which I think should update 1 field, using some pretty simple standard deviation logic, and based on ID and Date. I think the ID and Date has to be included to get everything aligned right. So, here is the code that I’m testing.

It seems like it should work fine, but something is off because I’m getting an error that says: Cannot use both a From clause and a subquery in the where clause or in the data values list in an Update statement.

I am using SQL Server 2019.

Advertisement

Answer

You are using aggregation functions in an update. What you want is an updatable subquery (or CTE):

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement