MySQL Variables storing database name
问题 I have a long script that I need to run on several different databases (all witht he same tables and field names). What I would like to do is something like this: 1 SET @TARGET_DATABASE = 'beta' 2 SET @SOURCE_DATABASE = 'sandbox'; 3 4 CREATE DATABASE IF NOT EXISTS @TARGET_DATABASE; 5 USE @TARGET_DATABASE; ... 10 INSERT INTO `tableFoo` SELECT * FROM @SOURCE_DATABASE.`tableFoo`; On line 10 I get an error (I'm not surprised): "Script line: 10 You have an error in your SQL syntax; check the