Instead of
Select *
From TaxRecords
Where PersonInvolvedWithChildBenefits = 'true'
Try this
Select Name, NationalInsuranceNumber
From TaxRecords
Where PersonInvolvedWithChildBenefits = 'true'
where do I send the invoice?
Select *
From TaxRecords
Where PersonInvolvedWithChildBenefits = 'true'
Try this
Select Name, NationalInsuranceNumber
From TaxRecords
Where PersonInvolvedWithChildBenefits = 'true'
where do I send the invoice?
Comment