Aug 26, 2003 #1 giuseppeitaliano Programmer Joined Aug 26, 2003 Messages 2 Location IT How can I control if a table already exists?
Aug 26, 2003 #2 RaceAap IS-IT--Management Joined Sep 5, 2001 Messages 39 Location 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