sql >> Databáze >  >> RDS >> PostgreSQL

Omezení cizího klíče s některými hodnotami sloupců v jiných tabulkách

U názvu knihy jste vynechali všechny cizí klíče.

Proto odpovídám kompletní vylepšenou sadou definic tabulek, jde o cizí klíče, že? Shure, že jste uvedl svlečený příklad.

Problém, který bylo třeba vyřešit, byl záznam v reading_event_discussion musí být o tématech, která v této knize existují:

drop table book cascade;
drop table book_theme;
drop table reading_event cascade;
drop table reading_event_discussion;

create table book (
    name text primary key -- new, a must because it is FK in reading_event
);
insert into book (name) values ('game of thrones'),('Database design');

create table book_theme (
    bookname  text references book(name), -- new
    themename text
);
insert into book_theme (bookname, themename) values 
  ('game of thrones', 'ambition'), ('game of thrones', 'power');

create table reading_event (
  i        SERIAL primary key, 
  venue    text, 
  bookread text references book(name) -- FK is new
);
insert into reading_event (venue, bookRead) VALUES
  ('Municipal Library', 'game of thrones');  

-- this is the solution: extended reference check
create or replace function themecheck (i integer, th text) returns boolean as $$
    select 
     (th in (select themename from book_theme bt 
       join reading_event re on i=re.i and re.bookRead=bt.bookname))
$$ language sql;

create table reading_event_discussion (
    i integer references reading_event(i), 
    themeDiscussed text check (themecheck (i, themeDiscussed))
);

-- Test statements:
-- just check data
select * from reading_event;
-- this should be ok
insert into reading_event_discussion values (1,'ambition'),(1,'power');
-- this must be refused
insert into reading_event_discussion values (1,'databases');

Řešením je tedy napsat vlastní kontrolní funkci. Toto není přenosné na jiné databázové systémy.

Tuto funkci lze napsat v několika jazycích (plpgsql, pltcl, ... ), ale funkce SQL lze vložit do dotazu a mohou být rychlejší.




  1. Nejsem schopen přijít na to, čeho jsem se při vytváření tohoto MYSQL dotazu dopustil

  2. obchod polské znaky mysql

  3. Spring JDBC + Postgres SQL + Java 8 - převod z/do LocalDate

  4. Uspořádejte výsledky tak, aby odpovídaly pořadí hodnot ve výrazu WHERE IN