I have a case where getting the Table name should be from a Set Variable like :

SET @ID_1 = (SELECT ID FROM `slider` LIMIT 0,1);
SET @Cat = (SELECT Category FROM `slider` LIMIT 0,1);
select * from @Cat where ID = @ID_1

but doing that way MySQL output's and error ,so could someone point me how can i Achieve that ,because these are my baby steps to MySQL

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

You'd have to do this with a prepared statement. Something like:

SET @s = CONCAT('select * from ', @Cat, ' where ID = ', @ID_1); 

PREPARE stmt1 FROM @s; 
EXECUTE stmt1; 
DEALLOCATE PREPARE stmt1; 
link|improve this answer
yes that worked like a charm ,i hope this kind of question is never asked and it might solve some one else problem. – Cody Jan 10 at 20:31
One more thing it show resul only when i remove DEALLOCATE PREPARE stm1; – Cody Jan 10 at 20:37
feedback

Your Answer

 
or
required, but never shown

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