D:\mysql\bin>mysqld-nt.exe -install
Service successfully installed.D:\mysql\bin>net start mysqlMySql 服务已经启动成功。
D:\mysql\bin>mysql -uroot -p
Enter password: ********
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 1 to server version: 4.0.13-ntType 'help;' or '\h' for help. Type '\c' to clear the buffer.mysql> create database sunnyday;
Query OK, 1 row affected (0.11 sec)mysql> show databases;
+-------------+
| Database    |
+-------------+
| mysql       |
| sunnyday    |
+-------------+
2 rows in set (0.06 sec)mysql> exit
ByeD:\mysql\bin>