Frage zu "CREATE TABLE IF NOT EXISTS"

hups1803

Erfahrenes Mitglied
Hallo ,

ich erstelle datenbanke in meinen script so

PHP:
CREATE TABLE IF NOT EXISTS rp_show_data (
`id` int(11) NOT NULL auto_increment,
`title` varchar(255) default NULL,
`text` text NOT NULL,
`color` int(11) default NULL,
`image` varchar(255) NOT NULL,
PRIMARY KEY  (`id`)
)ENGINE=MyISAM;

nun möchte ich aber das das sript wenn er vorhandene tabellen findet diese leert oder löscht und dann neu anlegt wie geht das ?

mfg
 
Zurück