Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7760233
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T13:49:43+00:00 2026-06-01T13:49:43+00:00

Here’s my toy setup. I have 3 tables. One table is a guest list

  • 0

Here’s my toy setup. I have 3 tables. One table is a guest list (last name, first name, whatever), a food list (beans, paste, rice, veggies) and an order list (guest id, food id). The order list is the one that interests me. I want to constrain it for the following condition.

Guests must have 3 orders.
A guest can have a null order.
No order per guest can be the same UNLESS that order is null.

So the order table would look like the following (with strings instead of fk ids):

steve, beans
steve, rice
steve, veggies
joey, rice
joey, beans
joey, <null>
sarah, rice
sarah, <null>
sarah, <null>
sam, <null>
sam, <null>
sam, <null>

Apparently Sam doesn’t like food … But that would be a valid table. Every user has 3 entries, and no user has duplicates (no double beans for you!).

Things I have tried

create table order (
  guest_uid FK,
  food_uid FK,
  CONSTRAINT order_unique UNIQUE (guest_uid, food_uid)
)

This works fine for verifying no double beans, but the double/triple null won’t fly. I was hoping the oracle unique null would apply here, but I guess not (unique constraint order_unique violated).

I tried a few other check constraints but I can’t figure out a way to specify the uniqueness across rows without doing a subquery (which is not allowed, of course). Any thoughts? Thanks

ps. If the only valid answer is “use PL/SQL or triggers,” I’ll make sure to mark that the correct answer.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T13:49:45+00:00Added an answer on June 1, 2026 at 1:49 pm

    You can use a function-based index to enforce the uniqueness across rows (note that I called the table guest_food since order is a reserved word

    create unique index idx_order_unique
        on guest_food( case when food_uid is not null
                            then guest_uid
                            else null
                        end,
                       case when food_uid is not null
                            then food_uid
                            else null
                        end );
    

    That will allow you to have as many rows with a NULL food_uid for any particular guest_uid while disallowing duplicate non-NULL values.

    The requirement that every guest has exactly three rows in the guest_food table is not something you can enforce with a constraint. You could potentially create a materialized view that does a fast refresh on commit that stores a count of the number of rows per guest_uid and add a constraint that throws an error if that count is anything other than 3. But that’s generally a rather unusual thing to want to enforce so it would tend to make me suspect that the data model was a bit off.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Here's the basic setup: I have a thin bar at the top of a
Here's the setup - I have a view that lists products. On that same
Here is my problem...I have a page that loads a list of clients and
Here's a problem I ran into recently. I have attributes strings of the form
Here is the issue I am having: I have a large query that needs
Here's my scenario - I have an SSIS job that depends on another prior
Here is a simplification of my database: Table: Property Fields: ID, Address Table: Quote
Here we go again, the old argument still arises... Would we better have a
Here is my problem : I have a post controller with the action create.
here is my configuration: http://domain.com (obviously fictitious name...) hosted on a server running Apache

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.