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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T15:51:28+00:00 2026-06-06T15:51:28+00:00

I have a contacts table: ID NAME — —- 1 KK 2 JKI 3

  • 0

I have a contacts table:

ID  NAME
--- ----
1   KK
2   JKI
3   HU

And I have a phone table:

ID  ContactID  Phone  Type
--- ---------  -----  --------
1   1          569    Business
2   1          896    Mobile
3   1          258    Fax
4   2          369    Mobile
5   3          124    Fax
6   2          496    Fax

I want to get all contacts with at least one phone number. The phone number to be displayed should be Business, if there are no Busniess Type available, then Mobile, if there are no Mobile type available then Fax else null

Sample Result:

ID  NAME   PHONE
--- ------ ------
1   KK     569   -- Business present
2   JKI    369   -- Business not present but mobile present
3   HU     124   -- only fax present
  • 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-06-06T15:51:31+00:00Added an answer on June 6, 2026 at 3:51 pm
    ;WITH [prior](i,t) AS 
    (
        SELECT 1, 'Business'
        UNION ALL SELECT 2, 'Mobile'
        UNION ALL SELECT 3, 'Fax'
    ),
    x AS 
    (
      SELECT c.ID, c.Name, p.Phone,
        rn = ROW_NUMBER() OVER (PARTITION BY c.ID ORDER BY r.i)
      FROM dbo.Contacts AS c
      LEFT OUTER JOIN dbo.Phone AS p
      ON p.ContactID = c.ID
      LEFT OUTER JOIN [prior] AS r
      ON r.t = p.[Type]
    )
    SELECT ID, Name, Phone FROM x
    WHERE rn = 1;
    

    If you want to eliminate contacts with no phones, just change both instances of LEFT OUTER to INNER.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a table view and i wanted to show the phone contacts of
I have a table of contacts which has name and default_name columns among others.
I have a contacts table which contains fields such as postcode , first name
I have a table in MySQL of contact information ; first name , last
I have a table contacts that has a field arrayOfMembers (JSON format) and a
I have a table of contacts and a table of postcode data. I need
I have two tables. Contacts table - contact_id, contact_email, contact_name, etc Opt out table
I have a 3 table - users, employees, contacts. The employees and contacts have
I'm trying to build a contacts-managing application. On my phone I have contacts from
In SQLite I have a table of contacts with one of the columns being

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.