teearr 0 Posted August 20, 2019 Report Share Posted August 20, 2019 I'm pretty new to SQL so forgive me if this is extremely easy--I couldn't find an answer by searching the forum or Google. I have a binary variable that I want to recode to make it more user-friendly to my client. The column is essentially saying, "Did the customer make a purchase?" and the variables are either 0 for no or 1 for yes. What I want to do is write into SQL that 0 displays as No and 1 displays as Yes. How would I do this? I'm using Oracle SQL Developer. Quote Link to post Share on other sites
justsomeguy 1,135 Posted August 20, 2019 Report Share Posted August 20, 2019 You can use a case expression: https://docs.oracle.com/cd/B19306_01/server.102/b14200/expressions004.htm SELECT CASE bool_field WHEN 0 THEN 'No' ELSE 'Yes' END ... 1 Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.