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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T01:03:05+00:00 2026-05-28T01:03:05+00:00

I have a table called Users that stores generic user information (user id, first,

  • 0

I have a table called Users that stores generic user information (user id, first, last name, email id, phone number, is active, etc.). User Id is primary key.

I have a second table that stores the user’s condo unit numbers (one to many relationship). One user can have one or more condos. User Id is secondary key.

UserID UnitNumber
    1      2A
    1      2B
    2      8H

I have a third table that stores the user’s parking spot numbers (one to many relationship).
One user can have zero or more parking spots. User Id is secondary key.

UserID ParkingSpot
1      104
1      105
1      208
2      205
2      206

How can I write a query that will return the user information plus the condo unit numbers and parking spot numbers for each user?

What I am looking to obtain is something like this:

UserID  FirstName  LastName  Email         Phone         Units    ParkingSpots
1       John       Smith     john@xyz.com  123-456-7890  2A, 2B   104, 105, 208
2       Mike       Allen     mike@xyz.com  456-789-0123  8H       205, 206

Thanks!

  • 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-28T01:03:06+00:00Added an answer on May 28, 2026 at 1:03 am

    You can use the STUFF function

    SELECT 
        UserID,
        FirstName,
        LastName,
        Email,
        Phone,
        STUFF((SELECT ',' + n.UnitNumber FROM dbo.Units n WHERE n.UserID = u.UserID FOR XML PATH('')), 1, 1, ''),
        STUFF((SELECT ',' + p.ParkingSpot FROM dbo.Parking p WHERE p.UserID = u.UserID FOR XML     PATH('')), 1, 1, '')
    FROM Users u
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a table User that stores user information - such as name, date
I have a table called Comments that stores messages between two users, and the
I have a database that stores the users name, number, and carrier in a
I have a table called Users ( class User < ActiveRecord::Base ) and a
I have a table called Classes which stores information on College classes. It has
I have a database table (called Info) that stores [Data], [fkID], [UserID], [Timestamp]. [Data]
I have one sql table that looks like this called posts: id | user
I have a table called UserPermissions with a FK to the users table by
I have table of users called users and log table called ulog . Every
I have 2 tables, called login_log, logs the timestamp of each email that logs

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.