更新和删除数据

更新数据

UPDATE Customers
SET cust_email = 'Kim@thetoystore.com'
WHERE cust_id = '10000005';

 

删除数据

DELETE FROM Customers
WHERE cust_id = '100000006';

 

posted @ 2019-07-10 11:11  xjyxp01  阅读(116)  评论(0编辑  收藏  举报