In the default col. there's a NULL. Page_id field is my PK and I didn't create it with NULL as a default - what does the "NULL" mean. The table seems to work fine - but I'm sure I never mentioned NULL in association with the auto-increment PK field...? Thanks
mysql> describe page;
+----------+------------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+----------+------------------+------+-----+---------+----------------+
| page_id | int(10) unsigned | | PRI | NULL | auto_increment |
| page_url | varchar(200) | | | | |
| title | varchar(200) | | | | |
+----------+------------------+------+-----+---------+----------------+
3 rows in set (0.00 sec)
mysql> describe page;
+----------+------------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+----------+------------------+------+-----+---------+----------------+
| page_id | int(10) unsigned | | PRI | NULL | auto_increment |
| page_url | varchar(200) | | | | |
| title | varchar(200) | | | | |
+----------+------------------+------+-----+---------+----------------+
3 rows in set (0.00 sec)