Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a query in a stored procedure which sets a variable @minDate dynamically based on the input from the user, hence minDate is n days before the input date
The query is : -

SET @query = CONCAT(' SET ',@minDate,'= (select dateList from date_master   
                where dateList <= ',inputDate,' and (isHoliday <> 1)   
                order by dateList desc LIMIT 1 offset ',n,');');  

-- run the query   
    PREPARE stmt FROM @query;  
    EXECUTE stmt;  
    DEALLOCATE PREPARE stmt;  

But the query returns error. How can I achieve this? Thank you.

share|improve this question
MySQL does not support dynamic SQL. See stackoverflow.com/questions/190776/…. – Ryan Feb 13 at 17:16

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.