1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
| --------------
SET AUTOCOMMIT = 0
--------------
--------------
START TRANSACTION
--------------
--------------
DROP DATABASE IF EXISTS `base`
--------------
--------------
CREATE DATABASE `base`
DEFAULT CHARACTER SET `latin1`
DEFAULT COLLATE `latin1_general_ci`
--------------
--------------
DROP TABLE IF EXISTS `test`
--------------
--------------
CREATE TABLE `test`
( `id` integer unsigned not null auto_increment primary key,
`userid` integer unsigned not null,
`bonus` tinyint unsigned not null
) ENGINE=InnoDB
DEFAULT CHARSET=`latin1` COLLATE=`latin1_general_ci`
ROW_FORMAT=COMPRESSED
--------------
--------------
insert into `test` (`userid`,`bonus`) values
(1,1),(1,1),(1,0),(1,0),
(2,1),(2,1),(2,1),
(3,1)
--------------
--------------
select * from `test`
--------------
+----+--------+-------+
| id | userid | bonus |
+----+--------+-------+
| 1 | 1 | 1 |
| 2 | 1 | 1 |
| 3 | 1 | 0 |
| 4 | 1 | 0 |
| 5 | 2 | 1 |
| 6 | 2 | 1 |
| 7 | 2 | 1 |
| 8 | 3 | 1 |
+----+--------+-------+
--------------
DROP TRIGGER IF EXISTS `verify`
--------------
--------------
CREATE TRIGGER `verify`
BEFORE INSERT ON `test`
FOR EACH ROW
BEGIN
DECLARE _msg varchar(255) default null;
DECLARE _som integer default 0;
set _som = (select sum(bonus) from test where userid = new.userid group by userid);
IF (_som >=2 )then
set _msg = concat('Bonus >=2 pour userid :', new.userid);
SIGNAL SQLSTATE VALUE '07777' SET MESSAGE_TEXT = _msg, MYSQL_ERRNO = 7777;
END IF;
END
--------------
--------------
insert into `test` (`userid`,`bonus`) values (1,0)
--------------
ERROR 7777 (07777) at line 72: Bonus >=2 pour userid :1
--------------
insert into `test` (`userid`,`bonus`) values (2,0)
--------------
ERROR 7777 (07777) at line 73: Bonus >=2 pour userid :2
--------------
insert into `test` (`userid`,`bonus`) values (3,1)
--------------
--------------
select * from `test`
--------------
+----+--------+-------+
| id | userid | bonus |
+----+--------+-------+
| 1 | 1 | 1 |
| 2 | 1 | 1 |
| 3 | 1 | 0 |
| 4 | 1 | 0 |
| 5 | 2 | 1 |
| 6 | 2 | 1 |
| 7 | 2 | 1 |
| 8 | 3 | 1 |
| 9 | 3 | 1 |
+----+--------+-------+
--------------
COMMIT
--------------
--------------
SET AUTOCOMMIT = 1
--------------
Appuyez sur une touche pour continuer... |
Partager