I have a table 'Department' inside a database and I would like to delete some rows. I would like to ask if
The result of this SQL delete code:
DELETE FROM ITD
FROM Department AS ITD
WHERE ITD.departmentID = 1
is it the same as the result of this:
DELETE FROM Department
WHERE departmentID = 1
Does both codes delete those entry in the table?