Hi,
I just started using mysql. Below is the following statement I put in:
mysql> DECLARE
v_FirstName varchar2(20),
v_LastName varchar2(20),
CURSOR c_Students IS
select first_name, last_name
from student;
ERROR 1064: You have an error in your SQL Syntax at line 1.
I just started using mysql. Below is the following statement I put in:
mysql> DECLARE
v_FirstName varchar2(20),
v_LastName varchar2(20),
CURSOR c_Students IS
select first_name, last_name
from student;
ERROR 1064: You have an error in your SQL Syntax at line 1.