MySQL Tutorial/Procedure Function/Declare

Материал из SQL эксперт
Версия от 09:53, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

The DECLARE Statement

The DECLARE statement is used to create local variables, conditions, handlers, and cursors within the procedure.

DECLARE must be the first statements immediately within a BEGIN block.

A common declaration is the local variable, which is done with a variable name and type:



DECLARE <name> <data type> [DEFAULT];