I am running the query below:
Select ID From Players order by ID limit 3;
It gives the error
Command Not Properly Ended.
Also the queries below:
SQL> Select ID From Players order by ID limit 3;
Select ID From Players order by ID limit 3
*
Gives similar error:
ERROR at line 1: ORA-00933: SQL command not properly ended
How can I fix it?