The solution: https://stackoverflow.com/a/439768/857994 gives the following code:
DELETE TableA
FROM TableA a
INNER JOIN
TableB b on b.Bid = a.Bid
and [my filter condition]
My question is:
How come we don't need an AS in the FROM to alias TableA to a here? Wouldn't we need the AS in a select query like SELECT E.FirstName FROM Employee AS E;
?
What's the difference?