sql >> Database teknologi >  >> RDS >> Mysql

log mysql-opdateringer

Du kan bruge en trigger og gemme ændringerne i en anden tabel.

Fra toppen af ​​mit hoved (det følgende antager, at produkt-id aldrig vil blive opdateret);

create table main (
    `id` int not null auto_increment,
    `title` varchar(30) not null,
    `price` float not null, 
    primary key(`id`)
);

create table logger (
    `id` int not null auto_increment,
    `productId` int not null,
    `from_title` varchar(30) not null,
    `to_title` varchar(30) not null,
    `from_price` float not null,
    `to_price` float not null,
    primary key(`id`)
);

delimiter //
create trigger my_logger before update on main
begin
    insert into
        logger
    set
        `productId`=OLD.`id`,
        `from_title`=OLD.`title`,
        `to_title`=NEW.`title`,
        `from_price`=OLD.`price`,
        `to_price`=NEW.`title`;
end;//
delimiter ;



  1. Jboss Datasource-konfiguration for MySQL - MysqlXADataSource-element

  2. Mysql union forespørgsel duplikerede rækker

  3. MySQL concat() for at oprette kolonnenavne, der skal bruges i en forespørgsel?

  4. Sådan fremskyndes SQL-forespørgsler