If you need to delete the rows of a table if that latter exists, you will have to rely on a custom stored procedure I think. something like that:
-- Define the procedure
CREATE PROCEDURE delete_if_exists(IN tbl CHAR(80))
BEGIN
IF @tbl IN (select table_name from information_schema.tables where table_schema = "db_2_44afb7")
THEN
SET @query = CONCAT("DELETE FROM ", @tbl);
PREPARE stmt FROM @query;
EXECUTE stmt;
END IF;
END //
-- use it
CALL delete_if_exists("mytable");
CALL delete_if_exists("myothertable");
See http://sqlfiddle.com/#!2/2ee190/3 for an example.
Of course, you could adjust the "DELETE FROM",...
part to fit with your specific needs.