Are these two statements equivalent?
UPDATE Table1 SET Field1=(
SELECT Field2 FROM Table2
WHERE Table1.ID=Table2.ID
)
FROM Table1
WHERE Field1 is null
UPDATE t SET Field1=(
SELECT Field2 FROM Table2
WHERE t.ID=Table2.ID
)
FROM Table1 t
WHERE Field1 is null
I'm trying to reduce the amount of aliasing. I feel that adding an alias to a statement only adds another table name to keep track of mentally.
My concern is that in example 1, since I'm not using the alias, it will update the entire table1 instead of filtering on the WHERE Field1 is null.
What is the rule of thumb for when aliasing is required?
-
Those two statements are equivalent, yes.
I almost always use aliasing in my queries. It keeps the length down and, personally, I think it makes things much easier to read since a short alias makes the field name stand out more prominently.
If you use the full table name, it clutters things up and makes it hard to distinguish which fields you're working with (at a glance, that is).
cf_PhillipSenn : I'm in awe of StackOverflow.... How do you guys watch for questions being asked?DaveE : It also makes it easier to read when you're referencing things across databases. For example, our batch processes create specific named tables for bulk processing. Since they cannot know if another process is using a table name #delete, for example, we create a table [v50_work_a].[dbo].x_work_123456 and alias it using 'W'. Reading 'W.column' is much easier than "[v50_work_a].[dbo].x_work_123456.column", and I know 'W' = 'process private work table'. -
These statements are equivalent.
An alias is only required if you refer to the table twice, to avoid ambiguity.
cf_PhillipSenn : When the statement is: UPDATE Table1 ... FROM Table1, am I referring to the table twice?Rory : well, you're referring to the same table twice. But I guess he meant when you refer to two copies of the same table, e.g. FROM Table1 t1 INNER JOIN Table1 t2...HLGEM : It is also required if you use a derived table. -
Yes, they're equivalent, because aliasing won't ever change the effect of a statement, only its readability or resolving ambiguity.
But I'd do this:
UPDATE Table1 SET Field1 = Table2.Field2 FROM Table1 INNER JOIN Table2 ON Table1.ID=Table2.ID WHERE Table1.Field1 is nullor this
UPDATE t1 SET Field1 = t2.Field2 FROM Table1 t1 INNER JOIN Table2 t2 ON t1.ID=t2.ID WHERE t1.Field1 is nullUse aliasing to help readability. Personally I like using short aliases (1-3 chars) for each of my tables, always using the same aliases for the same tables wherever possible so over time readability improves.
cf_PhillipSenn : Oh yes, that is much cleaner.
0 comments:
Post a Comment