Is there any particular reason for choosing
SELECT *
FROM table
WHERE col1 = 'val'
ORDER BY col2
instead of
SELECT *
FROM table
WHERE col1 = 'val'
ORDER BY col2
I'm not saying neither is better or worse, just wondering about what the pros and cons could be in both formatting styles.