Hansvb
Hansvb

Reputation: 113

Execute Oracle SQL query ending with semicolon

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

Answers (1)

Bruno Ferreira
Bruno Ferreira

Reputation: 484

Take a look a this answare here. It gives you the explanation you are looking for.

Upvotes: 1

Related Questions