How can I delete a row in an sql table without previously knowing if it exist in that table or no
delete from table id=4
for example I want to delete an id equal to 4 but I don't know if the id having the number 4 exist or no in this table should I use a procedure to check if it exist or can I just use a simple delete statement