SQL Errata
On page 43, the SQL command to create the member table is incorrect. The correct one is:
CREATE TABLE member (
id int(10) unsigned NOT NULL auto_increment,
emailAddress varchar(80) default NULL,
userPassword varchar(50) default NULL,
firstName varchar(50) default NULL,
lastName varchar(50) default NULL,
PRIMARY KEY (id)
);Thanks to Zachary Burnham.
=C=
Leave a Reply