delimiter //
set @a = 1;
if @a = 1 then
select 'one';
else
select 'unknown';
end if;
//
delimiter;
위와 같이 입력하면
[Err] 10064 - 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
이런 에러 메시지가 나타납니다. 어느 부분이 문제여서 에러가 나는걸까요?