Select * from emp;

; is know as delimiter it indicates end of command

DELIMITER //
Select * from emp //
Select sal * 0.2 from emp //
DELIMITER ;

MySQL - PL

image.png

Begin
...;
insert into dept values (1, 'a', 'B');
...;
End;

image.png