5 ms·
SELECT a , b , c FROM ... is the same as: SELECT a, b, c FROM ...
by emayljames 2y ago
SELECT a
, b
, c
FROM ...
is the same as:
SELECT a,
b,
c
FROM ...
- adornKey 2y agoI updated my comment... On the first try the code-formatter here played some tricks with me. The line before the Code has to be empty to get correct formatting.