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.