0、安装过程自行百度,都可以百度到。安装完成后,进入mysql命令行模式。

1
mysql -u root -p

1、新建、查看数据库

1
create database bookstore;
1
show databases;

2、在指定数据库中创建表。

1
use test
1
2
3
4
5
6
7
create table user
(
id        int auto_increment not null,
username   varchar(10) not null,
password   varchar(10) not null,
primary    key(id)
);
1
show tables;
1
descirbe tables;

3、向表中加入数据记录。

1
2
insert into user values(1,'yu','yu');
insert into user values(2,'zhouhejun','19830925');