Simply because sql doesn't define such behavior.
However, if you require the updates to be linked, such that
they only apply if the both succeed, just use a full-featured
database like PostgreSQL and use transactions:
begin;
update files set Is_Deleted='1' WHERE File_Id='1';
update comments set Is_Deleted='1' WHERE File_Id='1';
commit;