Programmer99
MIS
I have a query that is returning information from a table like...
Select LastName, FirstName, HasDriversLicenseFlag from Borrower
I need to look in the DriversLicense Table to determine if the borrower has one or not. If they do, display "Y" else Display "N" for the HasDriversLicenseFlag.
Any idea how I can achieve this?
Select LastName, FirstName, HasDriversLicenseFlag from Borrower
I need to look in the DriversLicense Table to determine if the borrower has one or not. If they do, display "Y" else Display "N" for the HasDriversLicenseFlag.
Any idea how I can achieve this?