It would be great to have intellisense/autocomplete feature when writing SOQL. I would be happy if I can start writing
Select id from A
and system offers me all objects starting with A. Same should apply in where for fields (standard/custom)
Select a.id from Account a where a.N
and system offers all fields starting with N
Extra smart it would be if we can get same after select but at that point he doesn't know what object we will select from but maybe it can start offering when we write object name and come back to select fields like
Select id from Account a
and then go back to fields set
Select a.Id, a.N from Account a
and system offers all fields starting with N
Thanks in advance