mysql - Dropping database table -


while importing production data development database, went off , have 2 database tables similar, differing 1 contains db name table prefix.

in case, have database rmstg, , 2 tables

main_stratkeys rmstg.main_stratkeys 

how can drop latter table?

drop table rmstg.main_stratkeys drops first table, not latter.

drop table rmstg.rmstg.main_stratkeys returns sql syntax error inner .rmstg. declaration.

try using backquotes:

drop table `rmstg.main_stratkeys`; 

or

drop table rmstg.`rmstg.main_stratkeys`; 

Comments

Popular posts from this blog

c++ - Creating new partition disk winapi -

Android Prevent Bluetooth Pairing Dialog -

php - joomla get content in onBeforeCompileHead function -