[MySQL] BEGIN ... END

참고

MySQL Documentation 13.6.1 BEGIN ... END Compound Statement

설명

  • BEGIN ... ENDstored programs(프로시저, 함수, 트리거, 이벤트)의 복합문(Compound Statement)을 작성할 때 사용

syntax

[begin_label:] BEGIN
    [statement_list]
END [end_label]

statement_list

  • 복수의 구문을 작성 할 수 있으며 세미콜론(;)으로 구분된다.
  • 비어 있어도 가능

links

social