• 数据库基本操作(创建表和添加触发器)


    测试(从头开始走一遍流程):

    1)创建Person表:

    [sql] view plaincopy
     
    1. drop table person;  
    2. create table person(  
    3. id int NOT NULL AUTO_INCREMENT primary key,  
    4. name varchar(8) not null,  
    5. sex bit,  
    6. age int check(age > 0 and age < 200),  
    7. addr varchar(100) default '' not null  
    8. );  
    9. select * from person;  
    此时Person表为空

    2)创建countPerson表

    [sql] view plaincopy
     
    1. drop table if exists countPerson;  
    2. create table countPerson(  
    3. totalnum int default 0  
    4. );  
    5. insert into countPerson(totalnum) values(0);  
    6. select * from countPerson;  

    此时初始totalNum = 0

    3) 创建触发器

    [sql] view plaincopy
     
    1. DROP TRIGGER IF EXISTS insertTrigger;  
    2. delimiter //  
    3. CREATE TRIGGER insertTrigger  
    4. AFTER INSERT ON person  
    5. FOR EACH ROW  
    6. BEGIN  
    7.   update countPerson set totalNum = totalNum + 1;  
    8. END;//  

    4)在Person表中添加记录insert
    [sql] view plaincopy
     
    1. insert into person(name, sex, age, addr) values('Jeremy', 1, 20, 'SH');  
    2. insert into person(name, sex, age, addr) values('Hellon', 1, 22, 'SH');  
    3. select * from person;  
    此时Person表中记录如下,

    5)看一下触发器有没有起作用

    [sql] view plaincopy
     
    1. select * from countPerson;  

    发现有作用了。

    附:

    此外使用下面语句可以看到数据库的触发器信息

    [sql] view plaincopy
     
    1. SELECT * FROM information_schema.`TRIGGERS`;  
  • 相关阅读:
    .Net Web开发技术栈
    C#foreach原理
    C#位运算符
    python写12306抢票
    java语法学习
    建立个人知识体系
    struts2静态方法和动态方法调用
    springmvc跳转的几种方式
    JDBC驱动程序的四种方式
    eclipse用axis2发布webserver
  • 原文地址:https://www.cnblogs.com/hujingwei/p/4737373.html
Copyright © 2020-2023  润新知