美文网首页
2019-03-26

2019-03-26

作者: whamai | 来源:发表于2019-03-26 17:34 被阅读0次

MYSQL数据库触发器

在 插入 更新 删除 数据时触发事件

delect from xs.kc where xs.id=dd.xs_id ;

MYSQL索引

提升 select 查询速度

主键即为索引

聚集索引

非聚集索引

作用:提升查询效力

储存过程

直接绑定数据库

由系统进行编译,由用户进行直接调用函数

参数:in 输入参数   on 输出参数  inout 输入输出型参数

判断一个数是不是大于0

写一个判断逻辑的变量索引

数据的拷贝

create table xs_copy as (select * from xs) 数据的备份

create table xs_copy2 as (select * from xs where 1=2) 在数据备份的文件中查询(空白)

create table xs_copy2 as (select * from xs where 1=1)  在数据备份的文件中查询(拷贝完整数据)

视图

create view (视图名称)  as (select * from xs join) xs.kc on xs.xs_id =xs_kc.xs_id

(不可修改)

相关文章

网友评论

      本文标题:2019-03-26

      本文链接:https://www.haomeiwen.com/subject/lgrnvqtx.html