delimiter //
set @a = 1;
if @ = 1 then
select 'one';
else
select 'unknown';
end if;
//
delimiter ;
위와 같이 입력했는데
Error 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 'if @a = 1 then select 'one'' at line 1
이런 에러 메시지가 나타납니다. 어디가 문제여서 에러가 발생하는지 궁금합니다. |