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: |
L. Aleaume |
| Subject: |
Re: CREATE...INSERT... |
| Date: |
07-07-1999 01:12AM |
High,
Question 1 : Did you create your database before ?
If not, then type this :
mysql> Create database your_db_name;
mysql> use your_db_name
Question 2: If the database your_db_name exists, then type :
mysql> use your_db_name
Then you can create your table y2k_mysql, this should work.
Read you soon,
Luc
|
Other posts in this thread:
Reply to this post:
|
 |
Visit the MySQL Forum!
New On DevShed:
Hot Forum Topics:
|