i have table VIDEO with cols (url, title, desc, ...) and table FAVORITE with cols(fav_url, thumb).
when i try to delete rows from both tables using:
delete from video join favorite on video.url=favorite.fav_url
where url in (select url from video where title like '%thumb%')
i get error.
is there any way to do this job executing one query?