'Trigger'에 해당되는 글 1건
- 2009.02.19 MySQL 5.0에서 Trigger 사용하기
MySQL 5.0에서 Trigger 사용하기
MySQL 5.0에서 Trigger 사용하기. ^^*
※ Trigger 생성하기
mysql> CREATE TABLE account (acct_num INT, amount DECIMAL(10,2));
Query OK, 0 rows affected (0.03 sec)
mysql> CREATE TRIGGER ins_sum BEFORE INSERT ON account
-> FOR EACH ROW SET @sum = @sum + NEW.amount;
Query OK, 0 rows affected (0.06 sec)
[참고] 트리거의 데이터는 DB 데이터가 위치하는 곳에 파일로 저장되며, 확장자명은 보통 TRG 이다.
해당 트리거의 Table 정보는 TRN 파일로 저장된다.
즉, 위와 같은 경우에는 ins_sum.TRG와 ins_sum.TRN 파일로 저장된다.
ins_sum.TRN 파일의 내용을 보면 다음과 같다.
TYPE=TRIGGERNAME
trigger_table=account <-- 테이블명
※ Trigger 시험하기
mysql> SET @sum = 0;
mysql> INSERT INTO account VALUES(137,14.98),(141,1937.50),(97,-100.00);
mysql> SELECT @sum AS 'Total amount inserted';
+-----------------------+
| Total amount inserted |
+-----------------------+
| 1852.48 |
+-----------------------+
※ Trigger 확인하기
mysql> show triggers;
+----------------+--------+-------------------+-------------------+--------+---------+----------+----------------+
| Trigger | Event | Table | Statement | Timing | Created | sql_mode | Definer |
+----------------+--------+-------------------+-------------------+--------+---------+----------+----------------+
| Trigger Name | INSERT | 관련 Table Name | BEGIN ..... END | BEFORE | NULL | | user@localhost |
+----------------+--------+-------------------+-------------------+--------+---------+----------+----------------+
※ Trigger 삭제하기
mysql> DROP TRIGGER test.ins_sum;
※ Trigger 생성하기의 또 다른 방법
mysql> delimiter //
mysql> CREATE TRIGGER upd_check BEFORE UPDATE ON account
-> FOR EACH ROW
-> BEGIN
-> IF NEW.amount < 0 THEN
-> SET NEW.amount = 0;
-> ELSEIF NEW.amount > 100 THEN
-> SET NEW.amount = 100;
-> END IF;
-> END;//
mysql> delimiter ;
※ Error 보기
mysql> show errors;
Empty set (0.00 sec)
※ Trigger에서 사용하는 변수명은 반드시!! Table의 Column명과 다른 것을 사용(대소문자 구분없음)해야 한다. 만약 같은 변수명을 사용시 해당 값이 의도된 값이 아닌 다른(보통 Default값)으로 설정되게 된다.
MySQL의 show 명령에 대한 자세한 사항을 보고자 한다면 다음을 클릭.
http://blog.naver.com/iamfreeman/50036208287
//------------------------------------------------------------------------//
참고 사이트 : http://dev.mysql.com/doc/refman/5.0/en/trigger-syntax.html
17.3.1. Trigger Syntax
To create a trigger or drop a trigger, use the CREATE TRIGGER
or DROP TRIGGER
statement. The syntax for these statements is described in Section 12.1.10, “CREATE TRIGGER
Syntax”, and Section 12.1.17, “DROP TRIGGER
Syntax”.
Here is a simple example that associates a trigger with a table for INSERT
statements. The trigger acts as an accumulator, summing the values inserted into one of the columns of the table.
mysql> CREATE TABLE account (acct_num INT, amount DECIMAL(10,2));
Query OK, 0 rows affected (0.03 sec)
mysql> CREATE TRIGGER ins_sum BEFORE INSERT ON account
-> FOR EACH ROW SET @sum = @sum + NEW.amount;
Query OK, 0 rows affected (0.06 sec)
The CREATE TRIGGER
statement creates a trigger named ins_sum
that is associated with the account
table. It also includes clauses that specify the trigger activation time, the triggering event, and what to do with the trigger activates:
- The keyword
BEFORE
indicates the trigger action time. In this case, the trigger should activate before each row inserted into the table. The other allowable keyword here is AFTER
.
- The keyword
INSERT
indicates the event that activates the trigger. In the example, INSERT
statements cause trigger activation. You can also create triggers for DELETE
and UPDATE
statements.
- The statement following
FOR EACH ROW
defines the statement to execute each time the trigger activates, which occurs once for each row affected by the triggering statement In the example, the triggered statement is a simple SET
that accumulates the values inserted into the amount
column. The statement refers to the column as NEW.amount
which means “the value of the amount
column to be inserted into the new row.”
To use the trigger, set the accumulator variable to zero, execute an INSERT
statement, and then see what value the variable has afterward:
mysql> SET @sum = 0;
mysql> INSERT INTO account VALUES(137,14.98),(141,1937.50),(97,-100.00);
mysql> SELECT @sum AS 'Total amount inserted';
+-----------------------+
| Total amount inserted |
+-----------------------+
| 1852.48 |
+-----------------------+
In this case, the value of @sum
after the INSERT
statement has executed is 14.98 + 1937.50 - 100
, or 1852.48
.
To destroy the trigger, use a DROP TRIGGER
statement. You must specify the schema name if the trigger is not in the default schema:
mysql> DROP TRIGGER test.ins_sum;
Triggers for a table are also dropped if you drop the table.
Trigger names exist in the schema namespace, meaning that all triggers must have unique names within a schema. Triggers in different schemas can have the same name.
In addition to the requirement that trigger names be unique for a schema, there are other limitations on the types of triggers you can create. In particular, you cannot have two triggers for a table that have the same activation time and activation event. For example, you cannot define two BEFORE INSERT
triggers or two AFTER UPDATE
triggers for a table. This should rarely be a significant limitation, because it is possible to define a trigger that executes multiple statements by using the BEGIN ... END
compound statement construct after FOR EACH ROW
. (An example appears later in this section.)
The OLD
and NEW
keywords enable you to access columns in the rows affected by a trigger. (OLD
and NEW
are not case sensitive.) In an INSERT
trigger, only NEW.col_name
can be used; there is no old row. In a DELETE
trigger, only OLD.col_name
can be used; there is no new row. In an UPDATE
trigger, you can use OLD.col_name
to refer to the columns of a row before it is updated and NEW.col_name
to refer to the columns of the row after it is updated.
A column named with OLD
is read only. You can refer to it (if you have the SELECT
privilege), but not modify it. A column named with NEW
can be referred to if you have the SELECT
privilege for it. In a BEFORE
trigger, you can also change its value with SET NEW.col_name
= value
if you have the UPDATE
privilege for it. This means you can use a trigger to modify the values to be inserted into a new row or that are used to update a row.
In a BEFORE
trigger, the NEW
value for an AUTO_INCREMENT
column is 0, not the automatically generated sequence number that will be generated when the new record actually is inserted.
OLD
and NEW
are MySQL extensions to triggers.
By using the BEGIN ... END
construct, you can define a trigger that executes multiple statements. Within the BEGIN
block, you also can use other syntax that is allowed within stored routines such as conditionals and loops. However, just as for stored routines, if you use the mysql program to define a trigger that executes multiple statements, it is necessary to redefine the mysql statement delimiter so that you can use the ;
statement delimiter within the trigger definition. The following example illustrates these points. It defines an UPDATE
trigger that checks the new value to be used for updating each row, and modifies the value to be within the range from 0 to 100. This must be a BEFORE
trigger because the value needs to be checked before it is used to update the row:
mysql> delimiter //
mysql> CREATE TRIGGER upd_check BEFORE UPDATE ON account
-> FOR EACH ROW
-> BEGIN
-> IF NEW.amount < 0 THEN
-> SET NEW.amount = 0;
-> ELSEIF NEW.amount > 100 THEN
-> SET NEW.amount = 100;
-> END IF;
-> END;//
mysql> delimiter ;
It can be easier to define a stored procedure separately and then invoke it from the trigger using a simple CALL
statement. This is also advantageous if you want to invoke the same routine from within several triggers.
There are some limitations on what can appear in statements that a trigger executes when activated:
- The trigger cannot use the
CALL
statement to invoke stored procedures that return data to the client or that use dynamic SQL. (Stored procedures are allowed to return data to the trigger through OUT
or INOUT
parameters.)
- The trigger cannot use statements that explicitly or implicitly begin or end a transaction such as
START TRANSACTION
, COMMIT
, or ROLLBACK
.
- Prior to MySQL 5.0.10, triggers cannot contain direct references to tables by name.
MySQL handles errors during trigger execution as follows:
- If a
BEFORE
trigger fails, the operation on the corresponding row is not performed.
- A
BEFORE
trigger is activated by the attempt to insert or modify the row, regardless of whether the attempt subsequently succeeds.
- An
AFTER
trigger is executed only if the BEFORE
trigger (if any) and the row operation both execute successfully.
- An error during either a
BEFORE
or AFTER
trigger results in failure of the entire statement that caused trigger invocation.
- For transactional tables, failure of a statement should cause rollback of all changes performed by the statement. Failure of a trigger causes the statement to fail, so trigger failure also causes rollback. For non-transactional tables, such rollback cannot be done, so although the statement fails, any changes performed prior to the point of the error remain in effect.
User Comments
Add your own comment.