Once a table is aliased, it needs to be referred to by the alias, right?
This will fail...
Use AdventureWorks;
SELECT TOP 10 Store.Name FROM Store as st
...But this update would not.
Use AdventureWorks;
UPDATE Store
SET Name = Name + '$Test'FROM Store as st
Does SQL Server parse any action verbs before it begins it's order of precedence of select operations?