I need to delete data from two tables at once. I have articles in one spreadsheet, and I have page permissions in the other spreadsheet that clearly specify who gets to the article and who doesn't. However, if I want to delete a given article, I am unable to put together the sql code to delete the permissions based on the url article. I tried this without any result
DELETE * FROM article_permission
JOIN article ON article.article_id = article_permission.article_id
WHERE article.url = 'kjebgkwb'