To remove multiple rows from a table, you can use the IN operator, for instance: DELETE FROM birthdays WHERE id IN (1, 3, 5);. This query will ...
確定! 回上一頁