1.字段(如案号),记录(案号所在的一行),主键(序号,唯一)的定义
2.关系型数据库和非关系型数据库的区别,mysql是关系型 ,mysql不区分大小写
3.数据完整性
数据类型:整数int
(常用tinyint -128—127
smallint -32768—32767)
整数 bit(只有0和1)
小数decimal(浮点数)
decimal(5,2)表示共存5位数,小数占2位
字符串varchar和char
数据库常用指令:
show databases; 显示现有数据库
create database ** charset=utf8;
创建名称为*的新数据库
use *; 使用*数据库
show tables; 显示数据库内现有表格
create table *(各项加约束);
创建表格*
insert into * values (,,,),(,,,);
向表*中插入数据
select *(此处为特定*) from students(表格名)
查询表格的所有字段
select name,age from students
查询表格中的name和age字段
select id as 序号, name as 名字, gender as 性别 from students;
使用 as 给字段起别名
select s.id,s.name,s.gender from students as s;
通过 as 给表起别名(s)
select distinct gender from students;
消除重复行(students表中gender 列的)
select * from students where name != '黄蓉';
条件查询,例:查询姓名不是黄蓉的内容
比较运算符
等于: = 大于: > 大于等于: >=
小于: < 小于等于: <= 不等于: != 或 <>
select * from students where id > 3 and gender=0;
例5:查询编号大于3的女同学
逻辑运算符 and or not
模糊查询:
select * from students where name like '黄_';
查询姓黄并且“名”是一个字的学生
select * from students where name like '黄%' or name like '%靖';
查询姓黄或叫靖的学生
范围查询
select * from students where id in(1,3,8);
查询编号是1或3或8的学生
select * from students where id between 3 and 8;
查询编号为3至8的学生
(可用not in 和 not between)
判断 空和非空
判空is null 判非空is not null
select * from students where height is null;
查询没有填写身高的学生
select * from students where height is not null;
查询填写了身高的学生