sql server - sql preferred selection type? -


this question has answer here:

  select a=1,b=2 vs   select 1 a, 2 b 

enter image description here

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

Popular posts from this blog

javascript - Enclosure Memory Copies -

php - Replacing tags in braces, even nested tags, with regex -