I have 2 tables Patient, Individual Both has some common data, I want to delete record from both tables. What I have tried so far is:
delete p,i from #patient p
inner join #individual i on i.patientUid=p.patientUid
where p.patientuid='test id'
Error:Incorrect syntax near ','.
:(