【问题标题】:Update Trigger Distinct Date更新触发不同日期
【发布时间】:2019-05-09 07:04:11
【问题描述】:

我正在做一个项目,但我卡在了这个触发器上。这是涉及的两个表。

    ---------------+---------------+------+-----+---------+----------------+
| Field         | Type          | Null | Key | Default | Extra          |
+---------------+---------------+------+-----+---------+----------------+
| id_tra        | int(11)       | NO   | PRI | NULL    | auto_increment |
| nombre_tra    | varchar(100)  | NO   |     | NULL    |                |
| apellidos_tra | varchar(100)  | NO   |     | NULL    |                |
| dni_tra       | varchar(1000) | NO   |     | NULL    |                |
| telefono_tra  | int(10)       | NO   |     | NULL    |                |
| falta_tra     | date          | NO   |     | NULL    |                |
| dias_tra      | int(255)      | NO   |     | NULL    |                |
+---------------+---------------+------+-----+---------+----------------+

+--------------+----------+------+-----+---------+----------------+
| Field        | Type     | Null | Key | Default | Extra          |
+--------------+----------+------+-----+---------+----------------+
| id_rec       | int(11)  | NO   | PRI | NULL    | auto_increment |
| id_tra_rec   | int(11)  | NO   | MUL | NULL    |                |
| id_var_rec   | int(11)  | NO   | MUL | NULL    |                |
| fecha_rec    | date     | NO   |     | NULL    |                |
| cantidad_rec | int(255) | NO   |     | NULL    |                |
+--------------+----------+------+-----+---------+----------------+

在这种情况下,id_traid_tra_rec 是相关的,我需要一个触发器来更新 dias_tra on dias_tra + 1 for id_tra = id_tra_rec 当有 在第二个表格图像上插入。 这相对容易,但奇怪的是插入可能有不同的数据但日期相同(fecha_rec),因此触发器必须知道是否存在具有相同id和相同日期的行(fecha_rec) 以不更新 dias_tra。像选择不同的东西。这是我尝试过的:

create trigger dias_tra 
after insert on datos_recogida
for each row
begin
if (select fecha_rec from datos_recogida where id_tra_rec=new.id_trarec and fecha_rec=new.fecha_rec)
update datos_trabajadores set dias_tra = dias_tra +1 where id_tra=new.id_tra_rec
end if;
end;

对不起,我的英语,第一次来,希望你能理解。如果您需要更多信息,我在这里:)

【问题讨论】:

  • 尝试如果不存在测试。并且每个 if 都需要 THEN 并且您似乎没有设置分隔符,

标签: mysql date triggers insert


【解决方案1】:

你没有说 datos_trabajadores 是什么时候创建的,所以这里有一个触发器,它会检查并在必要时创建。我使用了一个简单的计数来检查 id_tra_rec 和 fecha_rec 是否已经存在 - 这是一个插入后触发器,因此计数为 1 表示它是第一个。请注意 debug_table 是用来调试的,您应该在高兴时将其删除。

drop table if exists datos_recogida,datos_trabajadores;
create table datos_trabajadores
( id_tra         int(11)  auto_increment primary key,
 nombre_tra     varchar(100)  ,
 apellidos_tra  varchar(100)  ,
 dni_tra        varchar(1000) ,
 telefono_tra   int(10)       ,
 falta_tra      date          ,
 dias_tra       int(255)      )
;
create table datos_recogida
( id_rec        int(11)   auto_increment primary key,
 id_tra_rec    int(11)  ,
 id_var_rec    int(11)  ,
 fecha_rec     date     ,
 cantidad_rec  int(255) );

drop trigger if exists t;
delimiter $$

create trigger t after insert on datos_recogida
for each row
begin
    if (select count(*) from datos_recogida where id_tra_rec = new.id_tra_rec and fecha_rec = new.fecha_rec) = 1 then
        insert into debug_table(msg) values (concat('not found:',new.id_tra_rec,':',new.fecha_rec));
        if not exists(select 1 from datos_trabajadores where dias_tra = new.id_tra_rec) then
            insert into debug_table(msg) values ('inserting');
            insert into datos_trabajadores(dias_tra,nombre_tra) values (new.id_tra_rec,1);
        else
            insert into debug_table(msg) values ('Updating');
            update datos_trabajadores
                set nombre_tra = nombre_tra + 1
                where dias_tra = new.id_tra_rec;
        end if;
    end if;

end $$
delimiter ;

truncate table debug_table;
truncate table datos_recogida;
truncate table datos_trabajadores;

insert into datos_recogida (id_tra_rec,fecha_rec) 
values
(1,'2019-01-01'),
(1,'2019-01-01'),
(1,'2019-01-02');

select * from debug_table;
select * from datos_trabajadores;

MariaDB [sandbox]> select * from debug_table;
+----+------------------------+------+
| id | msg                    | MSG2 |
+----+------------------------+------+
|  1 | not found:1:2019-01-01 | NULL |
|  2 | inserting              | NULL |
|  3 | not found:1:2019-01-02 | NULL |
|  4 | Updating               | NULL |
+----+------------------------+------+
4 rows in set (0.00 sec)

MariaDB [sandbox]> select * from datos_trabajadores;
+--------+------------+---------------+---------+--------------+-----------+----------+
| id_tra | nombre_tra | apellidos_tra | dni_tra | telefono_tra | falta_tra | dias_tra |
+--------+------------+---------------+---------+--------------+-----------+----------+
|      1 | 2          | NULL          | NULL    |         NULL | NULL      |        1 |
+--------+------------+---------------+---------+--------------+-----------+----------+
1 row in set (0.00 sec)

【讨论】:

  • 太好了,我没有意识到这一点。非常感谢:)
【解决方案2】:

您可以使用exists 来检查是否有相同数据的记录。

BEGIN

     IF(EXISTS(select fecha_rec from datos_recogida where id_tra_rec=new.id_trarec and fecha_rec=new.fecha_rec)) THEN

          //If the record exists do what you need.

     ELSE 

          update datos_trabajadores set dias_tra = dias_tra +1 where id_tra=new.id_tra_rec

     END IF;
END;

【讨论】:

  • 如果不是 ENDIF 则结束
  • 它对我不起作用 :( 但感谢您的帮助 :)
【解决方案3】:

P.Salmon 的解决方案帮助我获得了一种简化的方法。感谢每个人,希望对某人有所帮助。

drop trigger if exists dias_tra;
delimiter $$
CREATE TRIGGER dias_tra AFTER INSERT ON datos_recogida FOR EACH ROW
BEGIN
DECLARE dias INT;
SET dias = (SELECT COUNT(DISTINCT fecha_rec) AS diasmes FROM datos_recogida WHERE id_tra_rec=NEW.id_tra_rec);
UPDATE datos_trabajadores SET dias_tra = dias where id_tra=NEW.id_tra_rec;
END; $$

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2015-11-27
    • 1970-01-01
    • 1970-01-01
    • 2021-09-07
    • 1970-01-01
    • 1970-01-01
    • 2014-02-19
    相关资源
    最近更新 更多