Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
152 views
in Technique[技术] by (71.8m points)

SQL that will search for a string and return a different string in the column next to it?

Sorry if the title doesn't make sense. In this table I have a column named Item Code that is some letters like DPS and NDP that are acronyms for Device Protection Service and No Device Protection. How do I create a column that will look for all of the DPS results and return Device Protection Service next to it and do the same with the other?

question from:https://stackoverflow.com/questions/66050832/sql-that-will-search-for-a-string-and-return-a-different-string-in-the-column-ne

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I think you just want a case expression:

select t.*,
       (case code when 'DPS' then 'Device Protection Service'
                  when 'NDP' then 'No Device Protection'
        end) as elaboration 
from t;

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.8k users

...