$sql = "ALTER TABLE `clients` ADD `new` char(1) NOT NULL default 'y', KEY `new` (`new`)"; $result = mysql_query($sql) or die("could not ALTER clients.". mysql_error());
ALTER TABLE `clients` ADD `new` char(1) NOT NULL default 'y' , ADD INDEX ( new)
Jump To Top of Thread