SELECT column[,...] INTO variable[,...] table_expression
Esta sintaxe de SELECT
armazena colunas
selecionadas diretamente nas variáveis. Por esta razão,
apenas uma linha pode ser recuperada. Esta instrução também
é extremamente útil quando usada em conjunto com cursores.
SELECT id,data INTO x,y FROM test.t1 LIMIT 1;
This is a translation of the MySQL Reference Manual that can be found at dev.mysql.com. The original Reference Manual is in English, and this translation is not necessarily as up to date as the English version.