Hi All
I have the followin sql query in sql 2005 and I want to return where TEST = 'Yes', please can
you advise how I would do that?
SELECT
File.dbo.MI.Premium as a,
File.dbo.MI.Num,
CASE
when Premium = 1 then 'Yes'
when Premium = 0 then 'No'
else '?'
END AS TEST
FROM
File.dbo.MIRep
WHERE
--TEST = 'Yes' and
File.dbo.MIRep."_Process" = 'RI'
Many Thanks
I have the followin sql query in sql 2005 and I want to return where TEST = 'Yes', please can
you advise how I would do that?
SELECT
File.dbo.MI.Premium as a,
File.dbo.MI.Num,
CASE
when Premium = 1 then 'Yes'
when Premium = 0 then 'No'
else '?'
END AS TEST
FROM
File.dbo.MIRep
WHERE
--TEST = 'Yes' and
File.dbo.MIRep."_Process" = 'RI'
Many Thanks