Aug 26, 2003 #1 giuseppeitaliano Programmer Aug 26, 2003 2 IT How can I control if a table already exists?
Aug 26, 2003 #2 RaceAap IS-IT--Management Sep 5, 2001 39 NL With: Code: SHOW TABLE STATUS FROM db_name LIKE 'wild table name' you can check if the table name excists and what the status is. Take a look at: http://www.mysql.com/doc/en/SHOW_TABLE_STATUS.html for more details Thanx, Lon Upvote 0 Downvote
With: Code: SHOW TABLE STATUS FROM db_name LIKE 'wild table name' you can check if the table name excists and what the status is. Take a look at: http://www.mysql.com/doc/en/SHOW_TABLE_STATUS.html for more details Thanx, Lon