Mysql基础第二十三天,更新和删除数据
Posted 2019ab
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mysql基础第二十三天,更新和删除数据相关的知识,希望对你有一定的参考价值。
更新数据
update custmers set cust_city=replace(cust_city,'市','city') where cust_id > 1000;
update customer set cust_adderess = '新福路12号',cust_city='厦门市' where cust_id=1;
update customers set cust_city='珠海' where cust_id<5;
删除数据
delete from customers where cust_id where cust_id between 200 and 300;
更新和删除数据的指导原理
以上是关于Mysql基础第二十三天,更新和删除数据的主要内容,如果未能解决你的问题,请参考以下文章