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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T17:17:23+00:00 2026-05-27T17:17:23+00:00

Say I have this query: SELECT name::text, id::int, pass:bool FROM mytable; which gives me

  • 0

Say I have this query:

SELECT name::text, id::int, pass:bool FROM mytable;

which gives me this view table:

name   id    pass
------------------
A      123    t
B      234    t
C      345    f

How do I tell postgres to give me this instead

name   id    pass
--------------------
A      123   passed
B      234   passed
C      345   failed

I tried the CASE WHEN condition THEN result; but that just gives me another column ‘case’.
(if there’s no easy way for postgres, is there any in psycopg2 ? because I mainly use it to get the data I want)

Thanks in advance

  • 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-27T17:17:24+00:00Added an answer on May 27, 2026 at 5:17 pm
    SELECT name::text, id::int, 
    CASE WHEN pass = true THEN 'passed' ELSE 'failed' END AS pass 
    FROM mytable;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Say I have this query: SELECT bugs.id, bug_color.name FROM bugs, bug_color WHERE bugs.id =
I have a query say select name from books_det ,and this query returns say
Let's say I have this query: select * from table1 r where r.x =
Let's say I have something like this: $db=new PDO($dsn); $statement=$db->query('Select * from foo'); while
Let say that we have the following query: SELECT DISTINCT COUNT(`users_id`) FROM `users_table`; this
Say I have these tables: people(id, name), cars(person_id, car) and this query: SELECT c.car
Let's say I have the following simple query SELECT TOP 1 name FROM months
Let us say I have a query like this: SELECT * FROM ( SELECT
say I have this $result = mysql_query('SELECT views FROM post ORDER BY views ASC');
Say I have a query like this: select ((amount1 - amount2)/ amount1) as chg

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.