RE: how to create a table and a column..?

2001-08-20 Thread B. van Ouwerkerk
http://www.mysql.com/doc/C/r/Creating_tables.html Look over http://www.mysql.com/doc/index.html Also have a look at www.devshed.com for some tutorials.. mysql, query Bye, B. - Before posting, please check:

Re: how to create a table and a column..?

2001-08-20 Thread Gerald R. Jensen
You have to create a database first, then tell MySQL to use that databases. mysqlCREATE DATABASE myfirstdb; mysqlUSE myfirstdb; mysqlCREATE TABLE tableone - Original Message - From: B. van Ouwerkerk [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, August 20, 2001 12:50

RE: how to create a table and a column..?

2001-08-19 Thread Mike
mysql CREATE TABLE pet (name VARCHAR(20), owner VARCHAR(20), - species VARCHAR(20), sex CHAR(1), birth DATE, death DATE); Straight from http://www.mysql.com/doc/C/r/Creating_tables.html Look over http://www.mysql.com/doc/index.html Enjoy M;) -Original Message- From: louie