View previous topic :: View next topic |
Author |
Message |
Xavier -
Joined: 17 Jan 2004 Posts: 50
|
Posted: Sun Feb 15, 2004 7:46 pm Post subject: MYSQL HELP |
|
|
ok i know that the command in dos for creating a new database is: Code: | mysqladmin -u root create database name | what is the code for deleting one??
srry im a newbie to sql, dos, php well prety much everything |
|
Back to top |
|
 |
Moxxnixx -
Joined: 21 Jun 2003 Posts: 1226 Location: Florida
|
Posted: Sun Feb 15, 2004 9:58 pm Post subject: |
|
|
To delete one:
Code: | mysqladmin -u root drop database name |
You can list all options by executing:
For more info go to: http://www.mysql.com/doc/en/mysqladmin.html
Or, you can just install phpMyAdmin and forget about command lines.
Look in the tutorials section of this forum for a "how to". :wink: |
|
Back to top |
|
 |
|