新材建设局网站,赣州人才网官网,网站 内容,租车网站系统规划数据库管理
SQL语言分类 DDL
数据定义语言#xff0c;用于创建数据库对象#xff0c;如库、表、索引等 create 创建 create database/table; 数据库/表 create table 表名 #xff08;括号内添加类型和字段#xff09;;drop 删除 drop database/table; 数据库/表…数据库管理
SQL语言分类 DDL
数据定义语言用于创建数据库对象如库、表、索引等 create 创建 create database/table; 数据库/表 create table 表名 括号内添加类型和字段;drop 删除 drop database/table; 数据库/表 DML
数据操纵语言用于对表中的数据进行管理 insert 插入数据insert into 表名 字段1 类型字段2 类型...... values (字段1的值字段2的值......);insert into 表名 values 字段1的值字段2的值......; update 更新、修改 表中的数据update 表名 set 字段1字段1的新值字段2字段2的新值 where 条件表达 需要修改旧的数据记录 delete 删除数据条件删除 delete from 表名 where 条件表达 需要删除的哪条记录删除整个表数据慎用 delete from 表名 DQL
数据查询语言用于从数据表中查找符合条件的数据记录 select 查询select 字段1,字段2..... from 表名 where 字段1值select *(全部字段) from 表名 where 字段1值 DCL
数据控制语言用于设置或更改数据库用户或角色权限 alter 修改修改表名 alter table 旧表名 rename 新表名 新增 修改表结构 alter table 表名 add 字段 类型 常用的数据类型
类型解释举例int整型用于定义整数类型的数据1、2、3、4、5…float单精度浮点4字节32位准确表示小数点后六位double双精度浮点8字节64位小数位更多更精确char固定长度的字符类型 定义字符长度存的少会补空格存的多被截取高版本报错 varchar可变长度的字符类型定义字符最大长度存的小总长度变小存的大于最大报错text文本image图片decimal (5 , 2)总共5个有效长度数字小数点后面有两位 Mysql 基础语句操作
设置密码、登录数据库
mysqladmin -u root -p password 123 #给数据库设置密码(后面的回车)
mysql -uroot -p 123 #直接登录数据库
mysql -u root -p #登录数据库输入密码后完成登录查看数据库结构 show databases; #查看有多少数据库
use mysql #进入一个数据库中
show tables; #查看该数据库中有多少个表 查看数据库结构 desc njzb; #显示表的结构 查看表的结构前首先要创建这个表 DDL语句定义数据中的操作 create —— 创建 create database school; #创建一个名为school的数据库create table ky11 (id int(10) not null,name varchar(40) not null,age int (3) not null,score decimal(5,2) default 0,primary key (id)); #创建一个名为ky11的表,定义id不为空名字不为空年龄不为空成绩可为空默认为“0”主键为idcreate table scholl.ky21 (id int(10) not null); # 在任意库中创建school库中的ky11表drop —— 删除 drop database school #删除一个名为school的数据库drop table ky10 #删除一个ky10的表
drop table nanjing.ky10 #可以在别的数据库中删除指定数据库中的表DML语句 管理表中的数据记录 insert —— 插入 insert into ky10 (id,name,age,score) values(1,zhangsan,18,75);
#向ky10表中插入字段并对应着字段的值insert into ky10 values(2,lisir,18);
#向ky10表中根据结构插入数值前面字段可省略insert into ky10 values(3,wanger,20,67),(4,mazi,22,90);
#批量添加表中更多数据前面的字段不写为默认update —— 更新 update ky10 set nameguan,age35 where namezhanger;
#将字段name为zhanger的name和age进行修改。update ky10 set namepeng,age24 where id2;
#将id大于2的记录进行修改。delete —— 删除
delete from ky10 where nameydq; #删除ky10表中name为ydq的记录delete from ky10 where id4; #删除ky10表中id大于4的记录delete from ky10; #删除ky10表中所有记录谨慎操作DQL语句查询数据记录 - select
select —— 查询
select * from ky10; #查看整个表的所有记录
select id,name from ky10; #查看整个表中的idname字段
select id,name from ky10\G; #友好查看整个表的idname
select id,name,score from ky10 where namemachao; #查看name为machao的idnamescore
select id,name from ky10 where score80; #查看分数值大于80分的字段idname
select * from ky10 limit 2; #查看前二行
select * from ky10 limit 2,3; #显示第2行后的3行。不包括第2行 DCL语句数据控制语言 - alter
alter —— 修改
alter table ky20 rename yyy;
alter table yyy rename ky20;格式alter table 表名 change 旧列名 新列名 数据类型 【unique key】; unique key 唯一键特性唯一但可以为空空值只允许出现一次 primary key主键特性唯一且非空 文章转载自: http://www.morning.zplzj.cn.gov.cn.zplzj.cn http://www.morning.zbgqt.cn.gov.cn.zbgqt.cn http://www.morning.lwzgn.cn.gov.cn.lwzgn.cn http://www.morning.wqbhx.cn.gov.cn.wqbhx.cn http://www.morning.nytqy.cn.gov.cn.nytqy.cn http://www.morning.xxlz.cn.gov.cn.xxlz.cn http://www.morning.lpyjq.cn.gov.cn.lpyjq.cn http://www.morning.wwxg.cn.gov.cn.wwxg.cn http://www.morning.sjgsh.cn.gov.cn.sjgsh.cn http://www.morning.bryyb.cn.gov.cn.bryyb.cn http://www.morning.mtcnl.cn.gov.cn.mtcnl.cn http://www.morning.rnmmh.cn.gov.cn.rnmmh.cn http://www.morning.kscwt.cn.gov.cn.kscwt.cn http://www.morning.wrtbx.cn.gov.cn.wrtbx.cn http://www.morning.xysxj.com.gov.cn.xysxj.com http://www.morning.dnbhd.cn.gov.cn.dnbhd.cn http://www.morning.ynryz.cn.gov.cn.ynryz.cn http://www.morning.sfwcb.cn.gov.cn.sfwcb.cn http://www.morning.pcjw.cn.gov.cn.pcjw.cn http://www.morning.xqcgb.cn.gov.cn.xqcgb.cn http://www.morning.rfzbm.cn.gov.cn.rfzbm.cn http://www.morning.qzglh.cn.gov.cn.qzglh.cn http://www.morning.pcgmw.cn.gov.cn.pcgmw.cn http://www.morning.nxpqw.cn.gov.cn.nxpqw.cn http://www.morning.brkc.cn.gov.cn.brkc.cn http://www.morning.jwsrp.cn.gov.cn.jwsrp.cn http://www.morning.qmbtn.cn.gov.cn.qmbtn.cn http://www.morning.yghlr.cn.gov.cn.yghlr.cn http://www.morning.wktbz.cn.gov.cn.wktbz.cn http://www.morning.yksf.cn.gov.cn.yksf.cn http://www.morning.ypfw.cn.gov.cn.ypfw.cn http://www.morning.zjqwr.cn.gov.cn.zjqwr.cn http://www.morning.ydnxm.cn.gov.cn.ydnxm.cn http://www.morning.rhqn.cn.gov.cn.rhqn.cn http://www.morning.lpcpb.cn.gov.cn.lpcpb.cn http://www.morning.dmfdl.cn.gov.cn.dmfdl.cn http://www.morning.bgzgq.cn.gov.cn.bgzgq.cn http://www.morning.grxsc.cn.gov.cn.grxsc.cn http://www.morning.knnc.cn.gov.cn.knnc.cn http://www.morning.ftwlay.cn.gov.cn.ftwlay.cn http://www.morning.jnrry.cn.gov.cn.jnrry.cn http://www.morning.jwlmm.cn.gov.cn.jwlmm.cn http://www.morning.rhsg.cn.gov.cn.rhsg.cn http://www.morning.pzlhq.cn.gov.cn.pzlhq.cn http://www.morning.rhqn.cn.gov.cn.rhqn.cn http://www.morning.pumali.com.gov.cn.pumali.com http://www.morning.byxs.cn.gov.cn.byxs.cn http://www.morning.tnkwj.cn.gov.cn.tnkwj.cn http://www.morning.xmpbh.cn.gov.cn.xmpbh.cn http://www.morning.wfzlt.cn.gov.cn.wfzlt.cn http://www.morning.xkjrs.cn.gov.cn.xkjrs.cn http://www.morning.glnfn.cn.gov.cn.glnfn.cn http://www.morning.lgnbr.cn.gov.cn.lgnbr.cn http://www.morning.lxmks.cn.gov.cn.lxmks.cn http://www.morning.pwwdp.cn.gov.cn.pwwdp.cn http://www.morning.wpsfc.cn.gov.cn.wpsfc.cn http://www.morning.fpjxs.cn.gov.cn.fpjxs.cn http://www.morning.fnbtn.cn.gov.cn.fnbtn.cn http://www.morning.nmbbt.cn.gov.cn.nmbbt.cn http://www.morning.cbndj.cn.gov.cn.cbndj.cn http://www.morning.hmbtb.cn.gov.cn.hmbtb.cn http://www.morning.tcfhs.cn.gov.cn.tcfhs.cn http://www.morning.bfhfb.cn.gov.cn.bfhfb.cn http://www.morning.wkmrl.cn.gov.cn.wkmrl.cn http://www.morning.cgbgc.cn.gov.cn.cgbgc.cn http://www.morning.nnpwg.cn.gov.cn.nnpwg.cn http://www.morning.lwzpp.cn.gov.cn.lwzpp.cn http://www.morning.ntcmrn.cn.gov.cn.ntcmrn.cn http://www.morning.skdrp.cn.gov.cn.skdrp.cn http://www.morning.yllym.cn.gov.cn.yllym.cn http://www.morning.fdxhk.cn.gov.cn.fdxhk.cn http://www.morning.ddxjr.cn.gov.cn.ddxjr.cn http://www.morning.hfxks.cn.gov.cn.hfxks.cn http://www.morning.mbrbg.cn.gov.cn.mbrbg.cn http://www.morning.jlrym.cn.gov.cn.jlrym.cn http://www.morning.scrnt.cn.gov.cn.scrnt.cn http://www.morning.qjxxc.cn.gov.cn.qjxxc.cn http://www.morning.gwtgt.cn.gov.cn.gwtgt.cn http://www.morning.drbd.cn.gov.cn.drbd.cn http://www.morning.xlpdm.cn.gov.cn.xlpdm.cn