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

  • Home
  • SEARCH
  • 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 7632177
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T06:33:18+00:00 2026-05-31T06:33:18+00:00

I am trying to figure out how to inner join a table that has

  • 0

I am trying to figure out how to inner join a table that has ID’s to my table that have all the ids in one row separated by commas.

The table with the commas is called (PA):

usersIDs
56488,51233,71055,98304,21577,12500

The table (SU) has the id and the name of the user:

UserID | Name
51233  | Bob Barker
21577  | Billy Knox
56488  | David Miller
etc etc

How can I inner join the name with the comma separated ID’s in my first table?

 SELECT DISTINCT SU.Name, SU.UserID, SU.Enabled
 FROM Sec_User AS SU INNER JOIN
    Program_Access AS PA ON SU.UserId = PA.userIDS
  • 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-31T06:33:20+00:00Added an answer on May 31, 2026 at 6:33 am

    Here’s a way without a function:

    SELECT DISTINCT SU.UserID, SU.Name, SU.Enabled
     FROM dbo.Sec_User AS SU
     INNER JOIN dbo.Program_Access AS PA
     ON ',' + PA.usersIDs + ',' LIKE '%,' + RTRIM(SU.UserID) + ',%';
    

    But including the function for completeness (and because having such a function is very useful for many purposes). First create a table-valued function:

    CREATE FUNCTION dbo.SplitInts
    (
       @List       VARCHAR(MAX),
       @Delimiter  CHAR(1)
    )
    RETURNS TABLE
    AS
       RETURN ( SELECT Item = CONVERT(INT, Item) FROM ( 
         SELECT Item = x.i.value('(./text())[1]', 'int') FROM ( 
           SELECT [XML] = CONVERT(XML, '<i>' + REPLACE(@List, @Delimiter, '</i><i>') 
           + '</i>').query('.') ) AS a CROSS APPLY [XML].nodes('i') AS x(i)) AS y
         WHERE Item IS NOT NULL
       );
    

    Now the JOIN:

     SELECT DISTINCT SU.UserID, SU.Name, SU.Enabled
      FROM dbo.Program_Access AS PA 
      CROSS APPLY dbo.SplitInts(PA.usersIDs, ',') AS s
      INNER JOIN dbo.Sec_User AS SU
      ON SU.UserID = s.Item;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Trying to figure out how to write a jquery formula that will sum all
I have this query that i've been trying to figure out how to convert
I have a Sqlite database that has a table consisting of company information (Companies)
I'm trying to figure out how to handle an error that gets thrown at
I'm trying to do a left join in linq to sql that has a
I'm trying to play with inter-process communication and since I could not figure out
Trying to figure out the best way to set up collection lists for users
Trying to figure out which to use.
Trying to figure out how to programmatically access the web pages in the application.
Trying to figure out the best way to do this: Should I do something

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.