clone table structure mysql

Solutions on MaxInterview for clone table structure mysql by the best coders in the world

showing results for - "clone table structure mysql"
Joséphine
17 Mar 2018
1CREATE TABLE foo SELECT * FROM bar LIMIT 0
2
3Or
4CREATE TABLE foo SELECT * FROM bar WHERE 1=0