Try the MySQL tutorial at
MySQL AB :: MySQL 5.0 Reference Manual :: 3 Tutorial
In my opinion, that is a very good tutorial. Also, for VARCHAR, I believe you need to set a length:
Code:
create table Member
(
username varchar(32),
pass varchar(32)
);
Also, don't forget the semicolon ( ; ) at the end.