sql server - sql preferred selection type? -
this question has answer here:
- different ways alias column 3 answers
select a=1,b=2 vs select 1 a, 2 b
what approach should use ? (by best practice decisions)
is there advantages of 1 vs other ?
personally use as
- more explicit , used elsewhere (table aliases).
it standard - using =
syntax not work on databases.
i don't believe there performance implications using 1 on other.
Comments
Post a Comment