.sql文件:
一: .sql结尾的文件可以直接导入到mysql客户端,执行该文件中的sql语句。
sql文件中的注释以--开头;
连接数据库:
mysql -uroot -p 回车然后输入密码
创建数据库:
==> create database 库名 charset=utf8;
使用数据库:
==> use 库名;
显示当前使用的数据库是哪个:
==> select databases();
创建数据表:
格式:
create table 表名(
字段名1 类型 约束 ,
字段名2 类型 约束 ,
......
字段名1 类型 约束
);
create table students(
id int unsigned primary key auto_increment not null,
name varchar(20) default ‘‘,
age tinyint unsigned default 0,
height decimal(5,2),
gender enum(‘男‘,‘女‘,‘中性‘,‘保密‘) default ‘保密‘,
cls_id int unsigned default 0,
is_delete bit default 0
);
create table classes(
id int unsigned auto_increment primary key not null,
name varchar(30) not null
);
以查看创建某表时的语句;
==>show create table 表名;
插入数据:(一次插入多条数据)
insert into students values
(0,‘小明‘,18,180.00,2,1,0),
(0,‘小月月‘,18,180.00,2,2,1),
(0,‘彭于晏‘,29,185.00,1,1,0),
(0,‘刘德华‘,59,175.00,1,2,1),
(0,‘黄蓉‘,38,160.00,2,1,0),
(0,‘凤姐‘,28,150.00,4,2,1),
(0,‘王祖贤‘,18,172.00,2,1,1),
(0,‘周杰伦‘,36,NULL,1,1,0),
(0,‘程坤‘,27,181.00,1,2,0),
(0,‘刘亦菲‘,25,166.00,2,2,1),
(0,‘金星‘,33,162.00,3,3,1),
(0,‘静香‘,12,180.00,2,4,0),
(0,‘郭靖‘,12,170.00,1,4,0),
(0,‘周杰‘,34,176.00,2,5,0);
往classes表中插入数据:
insert into classes values (0,"python_01期"),(0,"python_02期");
查询语句:
1: 普通查询
1.1:查询所有字段:
select * from students;
select * from classes;
1.2:查询指定字段:
select name,age from students;
1.3:给字段起别名
select name as 姓名,age as 年龄 from students;
1.4:表名.字段名
select students.name ,students.age from students;
select s.name ,s.age from students as s;
1.5:去重查询
select distinct name from students;
2: 条件查询
2.1:查询所有字段: