sql >> Base de Datos >  >> RDS >> PostgreSQL

PostgreSQL:¿Cómo implementar cardinalidad mínima?

No hay forma de especificar esto usando una restricción CHECK, así que creo que el mejor enfoque es un disparador:

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

Terminarías con algo como (no lo he probado ni nada):

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;