The following code is from MS Access, and I am trying to convert it nad make it works in SQL server. I dont know how to convert the last line, which contains IsNull. P.S:LIS is a name of drive. Thanks for anyone who can give me hints.
SELECT DISTINCT [Molecular Pathology].[ID#], [Molecular Pathology].[Last Name],
[Molecular Pathology].[First Name], [Molecular Pathology].Gender,
[Molecular Pathology].[Date of Birth], [Molecular Tests].[Test Type],
[Molecular Pathology].[Testing Gene], [Molecular Pathology].[Testing Exon],
[Molecular Pathology].[Tested Mutation], [Molecular Pathology].[Testing Gene 2],
[Molecular Pathology].[Testing Exon 2], [Molecular Pathology].[Tested Mutation 2],
[Molecular Tests].[Test Name], [Molecular Pathology].[Result Reported],
[Molecular Pathology].[Date Received], [Molecular Pathology].[gp#]
FROM ([Molecular Pathology]
LEFT JOIN [Molecular Select Tests]
ON [Molecular Pathology].ID = [Molecular Select Tests].ForKey)
LEFT JOIN [Molecular Tests]
ON [Molecular Select Tests].Test = [Molecular Tests].[Test Name]
WHERE ((IsNull([Molecular Pathology].[LIS SignOut])<>False));