MySQL是一種廣泛使用的關系型數據庫管理系統(tǒng)。在MySQL中,有時需要一次刪除多個用戶。如何實現一次刪除多個用戶呢?
DELETE FROM `user_table` WHERE `username` IN ('user1', 'user2', 'user3');
以上代碼將刪除user_table表中username為user1、user2和user3的記錄。
解析:
DELETE FROM `user_table`,表示從user_table表中刪除數據。
WHERE `username` IN ('user1', 'user2', 'user3'),表示條件是username屬性值為user1、user2和user3。
最后,執(zhí)行以上代碼即可一次刪除多個用戶。