  when i was trying to write the create statement for mysql i was having nasty time bec i was forgetting to put the varchar size: create table author (username varchar, password varchar, name varchar); but this is correct create table author (username varchar(40), password varchar(40), name varchar(40)); 
