Hacker News new | ask | show | jobs
by nemacol 881 days ago
Does not seem weird to me that you would start with the type of query you are writing.

Select, insert, update, delete, merge is the first word and says what you are doing.

If the keyword was in the middle of the query somewhere it would be harder to read.

1 comments

You have a good point, but the problem that not knowing the table to select beforehand does seem valid. What if the FROM clause is called SELECT and the SELECT clause is called PROJECT? (So it will read something like SELECT <table> PROJECT <columns>?)