c:\mysql\bin>mysql -u guest -p test Enter password: ****** Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 13 to server version: 4.0.12-nt
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> CREATE TABLE `books` ( -> `id` int(5) NOT NULL auto_increment, -> `title` varchar(255) NOT NULL default '', -> `authors` varchar(255) NOT NULL default '', -> `year_of_publication` year(4) NOT NULL default '0000', -> `date_added` date NOT NULL default '0000-00-00', -> PRIMARY KEY (`id`) -> ) TYPE=MyISAM; Query OK, 0 rows affected (0.02 sec)