Mysql
 sql >> Baza danych >  >> RDS >> Mysql

Jak zaktualizować kaskadowo w MySQL?

Oto rozwiązanie, które wykorzystuje kaskadowe klucze obce do tego, co opisujesz:

mysql> create table city (
  id int not null auto_increment, 
  name varchar(45), 
  active tinyint, 
  primary key (id),
  unique key (id, active));

mysql> create table person (
  id int not null auto_increment, 
  city_id int,
  active tinyint, 
  primary key (id), 
  foreign key (city_id, active) references city (id, active) on update cascade);

mysql> insert into city (name, active) values ('New York', 1);

mysql> insert into person (city_id, active) values (1, 1);

mysql> select * from person;
+----+---------+--------+
| id | city_id | active |
+----+---------+--------+
|  1 |       1 |      1 |
+----+---------+--------+

mysql> update city set active = 0 where id = 1;

mysql> select * from person;
+----+---------+--------+
| id | city_id | active |
+----+---------+--------+
|  1 |       1 |      0 |
+----+---------+--------+

Testowane na MySQL 5.5.31.



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. DAYOFWEEK() Przykłady – MySQL

  2. Automatyczne zamknięcie połączenia db w php?

  3. Wstawianie posta w Wordpress za pomocą MySql

  4. Zamiana wartości kolumn w MySQL

  5. Wyzwalacz MySQL:skopiuj wartość auto_increment do innej kolumny po wstawieniu