1

I want to use variable name in drop table statement in mysql.

set @dropable:='table_name';
DROP TABLE IF EXISTS @dropable;

1 Answer 1

2

You could try using a prepared statement here:

SET @droptable := 'table_name';
SET @sql := CONCAT('DROP TABLE IF EXISTS ', @droptable);
PREPARE stmt FROM @sql;
EXECUTE stmt;
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.