sql >> Database teknologi >  >> RDS >> SQLite

Hvordan bruger man en fremmednøgle i sqlite?

Som selvin foreslog brug på slette kaskade

http://www.sqlite.org/foreignkeys.html

Tabel 1

CREATE TABLE table1 (
  id PRIMARY KEY  
 ,entry1 text,entry2 text
);

insert into table1 values(1,"aaaa","aaaaa");
insert into table1 values(2,"bbbb","bbbbb");

Tabel 2

CREATE TABLE table2(
  id int references table1(id) ON DELETE CASCADE, entryx text, constant text
);


insert into table2 values(1,"aaaa","aaaaa");
insert into table2 values(1," baaaa ","baaaaaaa");
insert into table2 values(1,"  caaaa ","caaaaaaa")
insert into table2 values(2,"bbbb","bbbbb"); 

Tabeller efter indtastning

sqlite> select * from table1;
id          entry1      entry2    
----------  ----------  ----------
1           aaaa        aaaaa     
2           bbbb        bbbbb     
sqlite> select * from table2;
id          entryx      constant  
----------  ----------  ----------
1           aaaa        aaaaa      
1           baaaa       baaaaaaa  
1           caaaa       caaaaaaa  
2           bbbb        bbbbb  

Slet

sqlite> delete from table1 where id=1;

Tabeller efter sletning

sqlite> select * from table2;
id          entryx      constant  
----------  ----------  ----------
2           bbbb        bbbbb     


sqlite> select * from table1;
id          entry1      entry2    
----------  ----------  ----------
2           bbbb        bbbbb  



  1. mySQL underforespørgsel grænse

  2. java.lang.ClassNotFoundException:org.postgresql.Driver

  3. MySQL kommandolinjeformatering med UTF8

  4. Sådan laver du en INSERT Pass-Through-forespørgsel i SQL Server