This should work for you:
CREATE TABLE table_name (
column_1 varchar(50),
column_2 text,
column_3 int(10)
);
You can just keep adding as many columns that you will need. Then substitute varchar(50), int(10) ect.. with whatever datatype you are going to be using.
If you want to add new columns later on to this table use any of the above examples in this message thread.
Some good documentation for MySQL can be found here:
http://www.mysql.com/documentation/
In addition a book that I have found very valuable is:
MySQL by Paul DuBois Publisher: New Riders