第四章
课堂实践3 p89
2.将姓名为“吴波”的会员名修改为“吴海波” update customers set c_TrueName='吴海波' where c_TrueName='吴波'
3.将所有籍贯为“湖南株洲”的会员的邮政编码改为“412000” update customers set c_Postcode='412000' where c_Address='湖南株洲市' 4.将所有会员的密码初始化为“1234” update customers set c_Password='1234' where c_Type='VIP'
5.删除1988年出生的会员信息 delete from customers
where year(c_Brith)='1988'
课堂实践4 p95
2.2为customers设置default(默认值),用户类别c_type默认为普通用户