programing

커서를 선언하는 올바른 방법은 무엇입니까?

batch 2023. 9. 13. 22:26
반응형

커서를 선언하는 올바른 방법은 무엇입니까?

mariadb에서 커서를 만들고 있는데 오류가 좀 발생하니 방법을 알려주세요.
이 오류를 수정할 수 있습니까?

 create table o_rollcall(roll_no int (3),name varchar(30));
 insert into o_rollcall values (1,'safwan'),(2,'abc'),(3,'xyz');
 create table n_rollcall(roll_no int (3),name varchar(30));
 insert into n_rollcall values (1,'safwan');


MariaDB [c]> declare
-> cursor cur1 for select roll_no,name from o_rollcall;

ERROR 1064 (42000): You have an error in your SQL syntax; check the manual   
that corresponds to your MariaDB server version for the right syntax to   
use near 'declare
cursor cur1 for select roll_no,name from o_rollcall' at line 1

언급URL : https://stackoverflow.com/questions/58487125/which-is-the-correct-methode-for-declaring-cursor

반응형