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 3285926
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T20:19:19+00:00 2026-05-17T20:19:19+00:00

Sorry about the rubbish question title. I have a table SET_DEFINITIONS like this: SETKEY

  • 0

Sorry about the rubbish question title. I have a table SET_DEFINITIONS like this:

SETKEY      NOT NULL    NUMBER(38)
SETENTRY    NOT NULL    NUMBER(38)

where the idea is that the rows define sets of numbers. For example the table could contain rows:

1 2
1 4
2 1
2 2

which would mean set 1 is {2,4} and set 2 is {1,2}. I want to write a function

function selectOrInsertSet(table of number(38) numbers) return number(38)

which will return the key of a set with the same members as the passed in table (or create such a set if it doesn’t exist). What’s a good way to do this in PL/SQL?

EDIT: the solution I’m currently working on goes like this (and I’m not sure it’ll work):

  1. select all keys that have the first element into some collection c
  2. refine the collection c by intersecting with successive sets of keys that contain the other elements
  • 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-05-17T20:19:19+00:00Added an answer on May 17, 2026 at 8:19 pm

    You can use a full outer join between each set and the collection of numbers to see if they are the same. This function does that:

    function selectOrInsertSet(numbers number_tt) return number
    is
      l_diff number;
      l_retval number;
    begin
      for r in (select distinct setkey from set_definitions)
      loop
         with d as (select column_value from table(numbers)),
              s as (select setentry from set_definitions where setkey=r.setkey)
         select count(*)
         into   l_diff
         from   s
         full outer join d on d.column_value = s.setentry
         where s.setentry is null or d.column_value is null;
    
         if l_diff = 0 then
            l_retval := r.setkey;
            exit;
         end if;
      end loop;
    
      return l_retval;
    end;
    

    This returns the setkey if found, else null.

    I haven’t implemented the part about creating a new set if none is found, but that should be easy enough. I don’t personally like functions that have side effects (in this case, inserting rows into a table).

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

Sidebar

Related Questions

Sorry for this not being a real question, but Sometime back i remember seeing
Sorry for the second newbie question, I'm a developer not a sysadmin so this
Sorry if this sounds like a really stupid question, but I need to make
Sorry for the basic question - I'm a .NET developer and don't have much
Sorry the title isn't more help. I have a database of media-file URLs that
Sorry for the long question title. I guess I'm on to a loser on
Sorry about the vague subject but I couldn't think what to put. Here's my
Sorry, I'm new to SVN and I looked around a little for this. How
Sorry if the title is poorly descriptive, but I can't do better right now
Sorry for my ignorance here, but when I hear the word webserver, I immediately

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.