Hello All,
I have the following query
select fname, lname, '1' AS Status from tblname
when I run this query as you all know it return fname and lname and plus an extra field with value of 1.
Is there anyway that I can return 2 if fname = 'John', else keep the value 1?
Thank you