The following is the code that I am trying to execute, line to line, character to character and spaces to spaces
DELIMITER $$
CREATE PROCEDURE testing()
BEGIN
select * from test1;
END$$
DELIMITER;
I am getting this following error
Error Code : 1064
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'DELIMITER $$
CREATE PROCEDURE testing()
BEGIN
select * from test1' at line 1
(0 ms taken)
Error Code : 1064
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'END$$
DELIMITER' at line 1
(0 ms taken)
Please help 🙁