Allow only 3 rows to be added to a table for a specific value

前端 未结 3 1980
悲&欢浪女
悲&欢浪女 2020-12-11 09:58

I have a question in hand where i need to restrict the number of projects assigned to a manager to only 3. The tables are:

Manager:
Manager_employee_id(PK)
M         


        
3条回答
  •  暖寄归人
    2020-12-11 10:27

    "How do I implement the restrict to 0,3?"

    This requires an assertion, which is defined in the SQL standard but not implemented in Oracle. (Although there are moves to have them introduced).

    What you can do is use a materialized view to enforce it transparently.

    create materialized view project_manager
    refresh on commit 
    as 
    select Project_manager_employee_id
            , count(*) as no_of_projects
    from project
    group by Project_manager_employee_id
    /
    

    The magic is:

    alter table project_manager
       add constraint project_manager_limit_ck check 
           ( no_of_projects <= 3 )
    /
    

    This check constraint will prevent the materialized view being refreshed if the count of projects for a manager exceeds three, which failure will cause the triggering insert or update to fail. Admittedly it's not elegant.

    Because the mview is refreshed on commit (i.e. transactionally) you will need to build a log on project table:

    create materialized view log on project
    

提交回复
热议问题