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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T12:17:47+00:00 2026-05-25T12:17:47+00:00

Is there a simple elegant method to return the difference between two unordered, delimited

  • 0

Is there a simple elegant method to return the difference between two unordered, delimited strings in Oracle using PL/SQL?

Example:

String A: "a1, b4, g3, h6, t8, a0"
String B: "b4, h6, a0, t8, a1"

Difference: “g3”

I don’t have access to APEX_UTIL as suggested in this answer Difference between two unordered deliminted lists (Oracle)

  • 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-25T12:17:47+00:00Added an answer on May 25, 2026 at 12:17 pm

    I usually prefer using the MULTISET operator for situations like this.

    The solution below is not exactly elegant though as you have to tokenize the string to use the MULTISET operator but if you get the lists as collections then this would be very easy (or if you have a common tokenizer already). (The tokenizer below is not very fast.)

    DECLARE
       TYPE VARCHARTABLE IS TABLE OF VARCHAR2(2000);
    
       A VARCHAR2(32767) := 'a1, b4, g3, h6, t8, a0';
       B VARCHAR2(32767) := 'b4, h6, a0, t8, a1';
    
       onlyInA VARCHARTABLE;
       onlyInB VARCHARTABLE;
    
       FUNCTION tokenize( v IN VARCHAR2 )
       RETURN VARCHARTABLE 
       IS
          mReturn VARCHARTABLE := VARCHARTABLE();
          mTemp   VARCHAR2(2000);
          mChar   VARCHAR2(1);
          mIdx    INTEGER := 1;
    
          PROCEDURE appendToken( token IN VARCHAR2 )
          IS
          BEGIN
             IF TRIM(token) IS NOT NULL THEN
                mReturn.EXTEND(1);
                mReturn( mReturn.LAST ) := TRIM(token);
             END IF;
          END appendToken;
       BEGIN
          LOOP
             mChar := SUBSTR( v, mIdx, 1);
    
             IF mChar = ',' THEN
                   appendToken( mTemp );
                   mTemp := NULL;
             ELSIF mChar IS NULL THEN 
                appendToken( mTemp );
                EXIT;
             ELSE
                mTemp := mTemp || mChar;
             END IF;
    
             mIdx := mIdx + 1;
          END LOOP;
    
          RETURN mReturn;
      END tokenize;
    
      FUNCTION toVarchar( v IN VARCHARTABLE )
      RETURN VARCHAR2
      IS
         mReturn VARCHAR2(32767);
         mIdx    INTEGER := 0;
      BEGIN
         mIdx := v.FIRST;
    
         WHILE mIdx IS NOT NULL LOOP
            IF mReturn IS NOT NULL THEN
               mReturn := mReturn || ',';
            END IF;
            mReturn := mReturn || v(mIdx);
    
            mIdx := v.NEXT(mIdx);
         END LOOP;
    
         RETURN mReturn;
      END toVarchar;
    BEGIN
       onlyInA := tokenize(A) MULTISET EXCEPT tokenize(B);
       onlyInB := tokenize(B) MULTISET EXCEPT tokenize(A);
    
       DBMS_OUTPUT.put_line( 'Only in A : ' || toVarchar(onlyInA) );
       DBMS_OUTPUT.put_line( 'Only in B : ' || toVarchar(onlyInB) );
    END;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a simple elegant method to return the difference between two unordered, delimited
Is there a simple method of parsing XML files in C#? If so, what?
Is there a simple or elegant way to grab only the time of day
Are there simple libraries out there (.NET and Java) that are able to validate
There is simple cipher that translates number to series of . ( ) In
There is simple JSON serialization module with name simplejson which easily serializes Python objects
Is there a simple way of getting a HTML textarea and an input type=text
Is there a simple way to cache MySQL queries in PHP or failing that,
Is there a simple way in .NET to quickly get the current protocol, host,
Is there any simple algorithm to determine the likeliness of 2 names representing the

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.