赞
踩
目录
类型 | 解释 | 举例 |
int | 整型 | 用来定义整数类型的数据(1,2,3,4,5,) |
float | 单精度浮点(4字节32位) | 准确表示小数点后六位 |
double | 双精度浮点(8字节64位) | 小数位更多,更精确 |
char | 固定长度的字符类型 | 定义字符长度(存的少,会补空格,多的会被截取,高版本会报错) |
varchar | 可变长度字符类型 | 定义字符最大长度 |
text | 文本 | |
image | 图片 | |
decimal(5.2) | 总长度有效长度数字,小数点后面有两位 |
char和varchar的区别
截取和截断的区别
SQL语言分类
- mysqladmin -u root -p password #给数据库设置密码(后面的回车)
-
- mysql -uroot -p "123" #直接登录数据库
- mysql -u root -p #登录数据库,输入密码后完成登录
- 输入密码:
-
- 新密码:
-
- 确认新密码:
- show databases; #查看有多少数据库(分号要加)
- use mysql #进入一个数据库中,(分号可以不加)
- show tables; #查看该数据库中有多少个表
describe nba2022; #查看表的字段属性(可缩写为desc nba2022)
create database nba; #创建一个名为nba的数据库
create table james (id int(10) not null,name varchar(40) not null,age int(5) not null,score decimal(7,2) default '0',primary key (id));
#创建一个名为james的表,(定义id不为空,名字不为空,年龄不为空,成绩可为空默认为“0”,主键为id)create table scholl.ky21 (id int(10) not null); # 在任意库中创建nba库中的james表
题目:在celtics库中创建player这张表,要求字段为:id,name,time,score,backboard,secondary,address
要求:①id为主键,除了address之外其它字段均不可为空,address可以为空,且模式配置为“Boston”。(类型、长度自行定义
- mysql> create database celtics; 创建库
-
- mysql> create table celtics.player (id int(10) not null primary key,name varchar(40) not null,time varchar(40) not null,score decimal(5,2) not null,backboard decimal(3,2) not null,secondary decimal(5,2) not null,address varchar(30) default 'Boston');
- 创建表
-
- mysql> insert into player values(0,'塔图姆',41.0,25.6,6.7,6.2,'波士顿')
- mysql> insert into player values(7,'杰伦-布朗',38.3,23.1,6.9,3.5,'波士顿')
- 插入数据
-
update 表名 set 字段1=字段值1,字段2=字段值10 where 表达式;
- mysql> update player set score='35.0',backboard=9.9 where score='40.0';
- 把得分为,40.0,改为35.0,篮板9.9
-
-
- mysql> update player set secondary='9.9' where id>40;
- 将id大于40的,助攻改为9,9
格式:delete from 表名 where 条件表达式;
格式:select 字段1,字段2 from 表名 【where 条件表达式】;
aliter:修改表名称或表结构
格式:alter table 旧表名 rename 新表名;
alter table 表名 change 旧列名 新列明 数据类型 {unique key}
unique key:唯一键(特性,唯一,但可以为空,空值只允许出现一次)
primary key :主键(唯一且非空)
alter table 表名 drop 字段名;
- create table if not exists info (id int(4) zerofill primary key auto_increment,name varchar(10) not null,cardid int(18) not null unique key,hobby varchar(50));
-
- if not exists:表示检测要创建的表是否已存在,如果不存在就继续创建。
- int(4) zerofill:表若数值不满4位数,则前面用“0”填充,例0001。
- auto_increment: 表示此字段为自增长字段,即每条记录自动递增1,默认从1开始递增;自增长字段数据不可重复,自增长字段必须是主键,如添加的距离数据没有指定字段的值且添加失败也会自动递增一次。
- unique_key : 表示此字段唯一约束,此字段数据不可以重复,一张表中只能有一个主键,但是一张表中可以有多个唯一键。
- not null : 表示此字段不允许为NULL。
sql语言的分类
DDL数据定义语言,用于创建和删除数据库表操作
DML:数据操作语言,用于管理表中的记录,对数据进行增,删,该,的操作
DQL:数据查询语言,主要用来查询数据库中的记录
DCL:数据控制语言,用来针对字段属性的增,删,改操作
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。