I enrolled for Google Data Analytics and started learning Google Query. In my queries, I keep having syntax error even after copying from the instruction page to my console. I have been stuck here for 3 days now and i need your help.
Howdy β¦ you have a β;β following the table name on line 4. The β;β character ends one statement and starts a completely new statement. Your WHERE clause is still part of the original query. The SQL parser saw the end of the first query and said βHmmm β¦ here is a new statement that reads βWHEREββ and that fully explains the message. Remove the β;β and you should be well.
Thank you, Kolban, for your assistance. I truly appreciate your answer. I had been struggling with the same problem, but following your guidance has provided a great sense of relief.