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')
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…