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 about the extremely vague question title (any suggestions for improvements welcome) I have
Sorry about the wording for my question title. I have a basic HTML anchor
sorry about input mistakes, english its not my mother lang. I have this code
sorry about the title, I'm not sure how to even describe this, which makes
Sorry about the vague question title, but I have these typedefs here: typedef std::list<AnimationKeyframe>
I'm sorry about the title I'm just not sure how to describe this one.
I'm sorry about this question but I'm very new in mercurial, I have an
Sorry about the title, don't know how to phrase this. I have my own
Sorry about the title, I'm not exactly sure how to explain this with a
Sorry about the stupid question however I can't see/ not good enough to solve

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.