Why is it that the columns after the SELECT and before the FROM require comma delineation when the JOINS and conditions in the WHERE clause do not? It seems like you could write an implementation of SQL that can manage without commas, what's stopping someone from doing this?
Or, is there some flavor of SQL that eliminates the need for comma delineation already?
As for the select I would assume you need some sort of 'this is not an alias'. But if I remember correctly you at one point you did not need the 'as' condition for the column if you wanted to do aliases for some SQL dialects. Someone can correct me if I have that wrong...
So many programs had to handle older and newer syntax at the same time. There was no reason really change select statement much. So if you could have alias but no 'as' condition the thing would not be able to tell where the new column is and would probably get horribly confused if you didnt have a delimiter which they picked as a comma.
Not sure if there are any dialects that do not have the comma. That dialect would be probably considered 'out of spec'.