I would suggest to take a look at the documentation

http://dev.mysql.com/doc/mysql/en/index.html

1. create a DB :
http://dev.mysql.com/doc/mysql/en/index.html
2. using a SQL file to create those table.
on the mysql commqnd line :
source db.sql;

So as a whole, you'll do something like :

create database db;
usedb;
source db.sql;

himh


On Apr 2, 2005 7:20 PM, Niki Lampropoulou <[EMAIL PROTECTED]> wrote:
> I dont know how to do this very basuc, just atrated
> working with MySQL and not sure about what I am
> supposed to do.. Please heeeeelp!!
> 
> 2. Create a database for the program to use in MySQL.
> 
> 3. Create the tables in the new database using db.sql
> which is in the sql directory.
> 
> niki
> 
> Send instant messages to your online friends http://uk.messenger.yahoo.com
> 
> --
> MySQL General Mailing List
> For list archives: http://lists.mysql.com/mysql
> To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]
> 
>

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to