Dysan
11-15-2007, 12:42 PM
Hello! I have the following code that creates a table structure. How do I give Age a default value of 0
mysql_select_db("DB", $connection);
$sql = "CREATE TABLE Person
(
Name text,
Age text,
Sex text
)";
mysql_select_db("DB", $connection);
$sql = "CREATE TABLE Person
(
Name text,
Age text,
Sex text
)";