Am trying to fetch out a field through stored procedure and i used following query. I aimed at fetching out multiple rows, but it executes the result successfully only when a single row exists. Or else it returns an error as i mentioned below.

MYSQL Query

delimiter ;;
    drop procedure if exists Sample1;;
    CREATE PROCEDURE Sample1(IN lft1 INT,IN rgt1 INT, OUT emp1 VARCHAR(20))
    BEGIN
    SELECT  p.emp into emp1 FROM personnell p WHERE p.lft>lft1  and p.rgt < rgt1 LIMIT 10;
    END;;
    call Sample1(1,10,@emp);;
    select @emp;

Error Message

MySQL said: Documentation
#1172 - Result consisted of more than one row 

Note

Sample1--- procedure name; emp -----selected field from table personnell lft -----use to check the condition,it is also one of the field of table personnell personnell------table name

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

The error is not in your procedure. The error is in your query - it returns more then one row, but you cannot set multiple result into scalar value 'emp1'.

You should limit your query so that it returns one row.


How to retreive multiple rows from stored procedure in mysql?

  • Plan A: Fill another table, it may be a temporary table.
  • Plan B: Just execute your SELECT statement without INTO clause from the procedure; then you could read data-set from the application (c#, PHP+mysqli,...)
  • Plan C: Do not use the procedure, just execute the SELECT query.
link|improve this answer
+1, Now, The OP question still is How he can retreive multiple rows from his stored procedure ??? – Mahmoud Gamal Nov 29 '11 at 9:03
@Devart even if i don't give limit..it returns the same error..! – Bala.C Nov 29 '11 at 9:03
1  
@Bala.C, as @Devart said you have to ensure that your query inside the stored procedure returns only on row you can't return mutiple rows, so Yes it must return the same error, os you have to limit it like where id = 1 or something like that. – Mahmoud Gamal Nov 29 '11 at 9:13
feedback

Your Answer

 
or
required, but never shown

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