博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MYSQL触发器的使用
阅读量:5901 次
发布时间:2019-06-19

本文共 718 字,大约阅读时间需要 2 分钟。

hot3.png

mysql触发器格式为

create trigger trigger_name after/before  insert/update/delete on one_table for each row your_sql;

红色部分为自己命名的,蓝色部分为选择一个值,黑色部分必有,最后的绿色部分为你想出发的SQL语句;

mysql中关于两个table连接操作update方法为(mysql在此处不使用join语句):

update A,B set A.a2 = B.b2 where A.A1 = B.B1 and B.B2 = "XXX"

其中A、B为用户所建立的表名a2、b2为表下的属性值;

mysql中使用触发器获得刚刚插入的数据关键字为NEW,即(本人对数据库的命名习惯不好):

table1: recordsaccountid,date, month, week,income,expend ,remark);

table2: Rweek( week,Wincome, Wexpend);

触发器为实现table1插入一组数据,table2针对对应的week值进行相应的汇总:

create trigger t1 after insert on records for each row update Rweek set Rweek.Wincome=Rweek.Wincome+NEW.income,Rweek.Wexpend=Rweek.Wexpend+NEW.expend where Rweek.week=NEW.week;

转载于:https://my.oschina.net/Chanthon/blog/53114

你可能感兴趣的文章
Springboot配置(上)
查看>>
Luogu345: [POI2007]POW-The Flood
查看>>
java--Eclipse for mac 代码提示(代码助手,代码联想)快捷键修改
查看>>
Jdom的简单操作
查看>>
left join on/right join on/inner join on/full join on连接
查看>>
Codeforces 582B Once Again
查看>>
template.helper 多参数
查看>>
RadioButton布局图片+文字 实现tabhost效果
查看>>
access中设置不等于
查看>>
hdu 1221 Rectangle and Circle
查看>>
Android 四大组件之四(ContentProvider)
查看>>
Android 四大组件之一(Activity)
查看>>
扫描(一)
查看>>
PIE SDK矢量数据的读取
查看>>
两种方式分别改变alertdialog的宽和高
查看>>
TextView-setCompondDrawables用法
查看>>
淘宝Hadoop集群的概况
查看>>
Centos7安装rabbitmq server 3.6.0
查看>>
关于eclipse的ADT(插件)对xml的android:text属性检查修改
查看>>
iostat命令学习
查看>>