I am a little new to store procedures in MySQL and was wondering if I can SELECT multiple columns into multiple variables within the same select query.

for example (iName is the input to the function):

DECLARE iId INT(20);
DECLARE dCreate DATETIME;

SELECT Id INTO iId, dateCreated INTO dCreate FROM products WHERE pName=iName;

Thanks

link|improve this question

feedback

1 Answer

up vote 9 down vote accepted

Your syntax isn't quite right: you need to list the fields in order before the INTO, and the corresponding target variables after:

SELECT Id, dateCreated INTO iId, dCreate FROM products WHERE pName = iName
link|improve this answer
Thank you that works fine now. – aHunter Mar 15 '10 at 23:10
+1. This is a case where T-SQL syntax is clearer. Having these as separate lists causes the same maintenance problem as DECLARE CURSOR and FETCH (not that I, uh, ever use those). – harpo Jan 25 at 19:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.