When I run declare query, it always gives me errors.
DECLARE
the_variable date;
BEGIN
SELECT MIN("Start Date") INTO the_variable FROM "Employee_Master";
END;
ORA-06550: line 2, column 20: PLS-00103: Encountered the symbol "end-of-file" when expecting one of the following: := . ( @ % ; not null range with default character.
I am not sure where is the problem.
On the SQL Fiddle website, you need to tell it that you are going to be using PL/SQL and a statement will be ended with a
/
terminator (and not by a;
semi-colon). To do this you need to click on the "Query Terminator" button (right of the "Run SQL" and "Edit Fullscreen" buttons) and change it from[;]
to[/]
.Then it will work:
SQL Fiddle
Oracle 11g R2 Schema Setup:
Query 1:
Results: