PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

PostgreSQL:come implementare la cardinalità minima?

Non c'è modo di specificarlo usando un vincolo CHECK, quindi penso che l'approccio migliore sia un trigger:

http://www.postgresql.org/docs/9.1/static /sql-createtrigger.html
http://www.postgresql.org/docs /9.1/static/plpgsql-trigger.html

Finiresti con qualcosa del tipo (non l'ho testato o altro):

CREATE TRIGGER at_least_one before INSERT, UPDATE, DELETE ON the_one_table  FOR EACH ROW EXECUTE PROCEDURE check_at_least_one();

CREATE OR REPLACE FUNCTION check_at_least_one() RETURNS trigger AS $$
    BEGIN
    nmany := select count(*) from the_many_table where the_many_table.the_one_id=NEW.id;   
    IF nmany > 0 THEN 
        RETURN NEW;
    END IF;
    RETURN NULL;
END;