下载一个win,直接安装.
废话少说,请看示例:
打开MySQL Comment Line Client,
Enter password: *******
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 4 to server version: 5.0.19-nt
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> create database testdb;
Query OK, 1 row affected (0.00 sec)
mysql> create table testdb.users(id int, username char(20));
Query OK, 0 rows affected (0.05 sec)
mysql>insert into users(username) values('avril');
Query OK, 1 row affected (0.01 sec)
mysql> select * from users;
+------+----------+
| id | username |
+------+----------+
| NULL | eking |
+------+----------+
1 row in set (0.02 sec)
所有的文档都是最好的入门资料。要养成勤查文档的好习惯。但是别过分的依赖。
另外推荐的软件是图形化控制MySQL的软件MySQL Administrator。看起来还算是可以。
大家都说MySQL+PHP+Apache+linux是最好的组合……