SELECT ... FROM ... is more natural for smaller SQL. When you get 1000 line SQL files or 100s of SQL files, code management pain makes you yearn for FROM ... SELECT ... (three cheers for data build tool!)
How about `table.attribute` entirely, instead of `SELECT attribute FROM table`?
SELECT table.attribute
or FROM table SELECT attribute
or FROM table as a,table as b WHERE a.x=b.y SELECT a.z