Istruzioni programmatiche e composte
BEGIN, WHILE, ITERATE, LOOP, etc
-
BEGIN END
Sintassi [begin_label:] BEGIN [lista_istruzioni] END [end_label] Spiega... -
L'istruzione CASE
Sintassi CASE valore_case WHEN valore_when THEN lista_istruzioni [W... -
CLOSE
Chiude un cursore precedentemente aperto -
DECLARE CONDITION
Sintassi DECLARE nome_condizione CONDITION FOR valore_condizione condition... -
DECLARE CURSOR
Dichiara un cursore che potrà essere usato negli Stored Program -
DECLARE HANDLER
Sintassi DECLARE tipo_handler HANDLER FOR condizione [, condizione] ... istruzione -
DECLARE VARIABLE
Sintassi DECLARE nome_var [, nome_var] ... tipo [DEFAULT valore] Spiegazion... -
FETCH
Estrae una riga da un cursore -
L'istruzione IF
Sintassi IF condizione THEN lista_istruzioni [ELSEIF condizione THEN li... -
ITERATE
Sintassi ITERATE etichetta Spiegazione ITERATE può trovarsi solo all'intern... -
Cursori
Struttura per scorrere ed elaborare il risultato -
Diagnostica
Condizioni di errore -
Le Label
Sintassi label: <construtto> [label] Le label (etichette) sono identi... -
LEAVE
Sintassi LEAVE etichetta Spiegazione Questa istruzione serve a uscire dal c... -
LOOP
Sintassi [etichetta_begin:] LOOP lista_istruzioni END LOOP [etichetta_e... -
OPEN
Apre un cursore precedentemente dichiarato -
REPEAT LOOP
Sintassi [etichetta_begin:] REPEAT lista_istruzioni UNTIL condizione EN... -
RETURN
Sintassi RETURN espr Spiegazione L'istruzione RETURN termina l'esecuzione ... -
SELECT INTO
Sintassi SELECT nome_colonna [, nome_colonna] ... INTO nome_var [, nome... -
SET VARIABLE
Sintassi SET nome_var = espr [, nome_var = espr] ... Spiegazione L'istruzio... -
WHILE
Sintassi [etichetta_begin:] WHILE condizione DO lista_istruzioni END WH...
Content reproduced on this site is the property of its respective owners,
and this content is not reviewed in advance by MariaDB. The views, information and opinions
expressed by this content do not necessarily represent those of MariaDB or any other party.