Is there any particular reason (performance or otherwise) to use AS ahead of = when aliasing a column?
My personal preference (for readability) is to use this:
select
alias1 = somecolumn
alias2 = anothercolumn
from
tables
etc...
instead of this:
select
somecolumn as alias1
anothercolumn as alias2
from
tables
etc...
Am I missing out on any reason why I shouldn't be doing this? What are other people's preferences when it comes to formatting their columns?