Reputation: 113
How to execute a SQL query properly?
When I want to execute a select
statement I have to do it like this:
select id from test_table
instead of:
select id from test_table;
Why is the ";" not allowed? Or am I missing something?
Upvotes: 0
Views: 1266
Reputation: 484
Take a look a this answare here. It gives you the explanation you are looking for.
Upvotes: 1