mysql - SQL DELETE not Deleting -
i have code
const sqlstatement string = "delete people, account people cross join account on people.peopleid = account.peopleid uname = @p3 " command.parameters.addwithvalue("@p3", username.value) when user inputs username of account, statement should delete records in 2 tables people table , account table
it says successful when database nothing has been changed? have 1 add account works fine.
i don't know problem? in syntax?
Comments
Post a Comment