Beginning MySQL Tutorial One of the fastest SQL (Structured Query Language) database servers currently on the market is the MySQL server, developed by T.c.X. DataKonsultAB. MySQL, available for download at http://www.mysql.com, offers the data base programmer with an array of options and capabilities rarely seen in other database servers. What's more, MySQL is free of charge for those wishing to use it for private and commercial use.
| Name: |
Matt |
| Subject: |
Re: creating a new database |
| Date: |
02-28-2000 04:52PM |
Hi,
FIrst of all, you should really read through the Basic tuts on this site. they are excellent.
try this though:
create table TABLENAME (
name VARCHAR(20) NOT NULL,
email VARCHAR(40),
phone INT(20),
password VARCHAR(30)
);
WHere TABLENAME is the name of the table you want to create
|
Other posts in this thread:
Reply to this post:
|
 |
Visit the MySQL Forum!
New On DevShed:
Hot Forum Topics:
|