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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T01:19:27+00:00 2026-06-08T01:19:27+00:00

I have defined: table X ID AGE HEIGHT REGISTERED 1 23 1.83 1 2

  • 0

I have defined:
table X

ID    AGE    HEIGHT   REGISTERED
1     23     1.83     1
2     24     1.81     0
3     24     1.72     0
4     22     1.91     1
5     32     1.76     0

And I would like to perform a query to return valid values but *ONLY* for the registered ID’s. Those who are not, would get 0 in return. like this:

result

ID    AGE    HEIGHT   REGISTERED
1     23     1.83     1
2     0      0        0
3     0      0        0
4     22     1.91     1
5     0      0        0

What is the way of defining that query?

  • 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-08T01:19:28+00:00Added an answer on June 8, 2026 at 1:19 am

    You can use the MySQL specific IF expression:

    SELECT 
        ID,
        IF(REGISTERED, AGE, 0) AS AGE,
        IF(REGISTERED, HEIGHT, 0) AS HEIGHT,
        REGISTERED
    FROM tablex
    

    See it working online: sqlfiddle

    You could also use the standard SQL CASE expression:

    SELECT 
        ID,
        CASE WHEN REGISTERED = 1 THEN AGE ELSE 0 END AS AGE,
        CASE WHEN REGISTERED = 1 THEN HEIGHT ELSE 0 END AS HEIGHT,
        REGISTERED
    FROM tablex
    

    In response to your comment here’s one more that might be slightly easier if you have lots of columns:

    SELECT id, AGE, HEIGHT, REGISTERED
    FROM tablex
    WHERE REGISTERED
    
    UNION ALL
    
    SELECT id, 0, 0, 0
    FROM tablex
    WHERE NOT REGISTERED
    
    ORDER BY ID
    

    See it working online: sqlfiddle

    Note that the column list in this query could be shortened to just SELECT * and the query would still work. But using SELECT * in production code is not advisable for various reasons that have been covered elsewhere on the site.

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

Sidebar

Related Questions

I have a table defined like this: create table users ( id int(10), age
Running into a problem. I have a table defined to hold the values of
I have a table called MyTable on which I have defined a trigger, like
I have a table defined as <table border=1 width=200px height=auto> <tr> <td></td> </tr> </table>
I have defined my table like this: <div id=a> <table id=main_table border=1> <tr> <th>Jobs</th>
I have a User table defined like this: CREATE TABLE Users( UserId int IDENTITY(1,1)
I have a table defined like this: CREATE TABLE mytable (id INT NOT NULL
I have defined a table type PL/SQL variable and added some data there. create
I have an user defined table function in SQL Server that aggregate data from
I have a user-defined table type. I want to check it's existence before editing

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.