第20章:更新和删除数据
P140
update customers set_emails='elmer@fudd.com' where cust_id=10005;
更新多个列,用逗号隔开。注意被指定的词有引号,null不用引号。
#为什么cust_name不能是空值# ##删除一个列,把一个列的值改为空值##
P141删除数据
select from customers where cust_id=10006; #删除cust_id=10006的的行所有信息#
2022-06-04 11:44:28
第20章:更新和删除数据
P140
update customers set_emails='elmer@fudd.com' where cust_id=10005;
更新多个列,用逗号隔开。注意被指定的词有引号,null不用引号。
#为什么cust_name不能是空值# ##删除一个列,把一个列的值改为空值##
P141删除数据
select from customers where cust_id=10006; #删除cust_id=10006的的行所有信息#