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

Categories

I have a requirement to convert the value in the update statement dynamically in SQL Server.

For example, if I receive value as 'true', need to convert it as 'enabled' and 'false', then convert it as 'disabled'.

How I need to implement this in SQL Server ?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.9k views
Welcome To Ask or Share your Answers For Others

1 Answer

This isn't "conversion"; conversion means when you change the data type of a value, such as from a varchar to an int.

What you want here is simply a CASE expression:

CASE YourValue WHEN 'true' THEN 'enabled'
               WHEN 'false' THEN 'disabled'
END

You could also use an IIF(), which parsed as a CASE expression "under the hood":

IIF(YourValue = 'true','enabled','false')

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...