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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T09:05:30+00:00 2026-05-13T09:05:30+00:00

I know there’s got to be a way to do this, but for the

  • 0

I know there’s got to be a way to do this, but for the life of me I can’t figure it out:

I have 3 tables I want to join together (simplified to illustrate):

users
uid mail
1   qq@qq.com
2   ww@ww.com
3   ee@ee.com

profile_fields
fid name        label
1   full_name   Full Name
2   phone       Phone

profile_values
uid fid value
1   1   Q Q
1   2   5555555555
2   1   Ww Ww
3   2   4444525411

I’d like to get results of the form:

uid mail        full_name   phone
1   qq@qq.com   Q Q     5555555555
2   ww@ww.com   Ww Ww       NULL
3   ee@ee.com   NULL        44445454111

I’ve tried various SELECTs with different JOIN conditions but I can’t seem to figure out how to get the rows of profile_fields to be my columns in my SELECT

EDIT: I’ve also tried googling around, but I can’t seem to figure out how to phrase this to google.

  • 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-13T09:05:31+00:00Added an answer on May 13, 2026 at 9:05 am

    Use:

    SELECT u.uid,
           u.mail,
           MAX(CASE WHEN pf.name = 'full_name' THEN pv.value END) AS full_name,
           MAX(CASE WHEN pf.name = 'phone' THEN pv.value END) AS phone
      FROM USERS u
      LEFT JOIN PROFILE_VALUES pv ON pv.uid = u.uid
      JOIN PROFILE_FIELDS pf ON pf.fid = pv.fid
                            AND pf.name IN ('full_name', 'phone')
    GROUP BY u.uid, u.mail
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know there is a lot on this topic but I can't get any
I know there are several topics out there about this, but none of them
I know there are questions on here similar to this, but I have not
I know there is alot of documentation out there on this stuff, but I
I know there have been a few threads on this before, but I have
I know there have been quite a few posts on this but none seem
I know there are so many posts about issues like this, but I can
I know there are a lot of questions around on this subject, but I've
I know there are dozens of questions that ask about this error, but none
I know there are actually a number of questions similar to this one, but

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.