I want to Delete Record from Two different Table but i join those table using Left join
DELETE tab_issue.tab_issueID, tab_return.tab_issueID
FROM tab_issue
INNER JOIN tab_return
WHERE tab_issue.tab_issueID = tab_return.tab_issueID
I have no strong concept on sQL if someone have simple query which solve my issue. I am using mySQL database