web-dev-qa-db-ja.com

MySQLトリガーをプログラムして、行を別のテーブルに挿入する方法は?

テーブルにMySQLトリガーを作成しようとしています。基本的に、アクティビティストリームを作成しており、ユーザーによるアクションを記録する必要があります。ユーザーがコメントを作成するとき、そのテーブルのデータベーストリガーを起動し、次のことを行います。

  1. 最後に挿入された行のID(コメント行のID)を取得します。
  2. 最後に挿入された行のデータを使用して、アクティビティテーブルへのINSERTを実行します。

基本的に、コメントを削除するためにこのトリガーを複製します。

私が持っていた質問:

  1. LAST_INSERT_ID()がIDを取得する最良の方法ですか?
  2. 「INSERT into Activities」ステートメントで使用するために、最後に挿入されたコメント行のデータを適切に保存するにはどうすればよいですか?
  3. トリガーと同様にストアドプロシージャの組み合わせを使用する必要がありますか?
  4. トリガーの基本構造はどのように見えますか?

ありがとう! DBトリガー、プロシージャ、および関数に関係することに触れてから数年が経ちました。

29
Eric
drop table if exists comments;
create table comments
(
comment_id int unsigned not null auto_increment primary key,
user_id int unsigned not null
)
engine=innodb;

drop table if exists activities;
create table activities
(
activity_id int unsigned not null auto_increment primary key,
comment_id int unsigned not null,
user_id int unsigned not null
)
engine=innodb;

delimiter #

create trigger comments_after_ins_trig after insert on comments
for each row
begin
  insert into activities (comment_id, user_id) values (new.comment_id, new.user_id);
end#

delimiter ;

insert into comments (user_id) values (1),(2);

select * from comments;
select * from activities;

編集:

mysql> \. d:\foo.sql

Database changed
Query OK, 0 rows affected (0.10 sec)

Query OK, 0 rows affected (0.30 sec)

Query OK, 0 rows affected (0.11 sec)

Query OK, 0 rows affected (0.35 sec)

Query OK, 0 rows affected (0.07 sec)

Query OK, 2 rows affected (0.03 sec)
Records: 2  Duplicates: 0  Warnings: 0

+------------+---------+
| comment_id | user_id |
+------------+---------+
|          1 |       1 |
|          2 |       2 |
+------------+---------+
2 rows in set (0.00 sec)

+-------------+------------+---------+
| activity_id | comment_id | user_id |
+-------------+------------+---------+
|           1 |          1 |       1 |
|           2 |          2 |       2 |
+-------------+------------+---------+
2 rows in set (0.00 sec)
42
Jon Black