I'm trying to find the rows that start with Au but the sql server is reporting an error when using the Description with the like it says: Ambiguous column name 'Description'.
Select A.NotesID, Coalesce( A.Description, B.Description ) as Description
from MdPrNotes A Left Outer Join MDBIOPSYCHOSOCIALSETUPHDR B On
A.NoteCode = B.BioCode
Where Status = 'A' AND CanPatientEditIt = 'Y' AND Description like '%Au%'
order by Description