delete删除表记录


delete 删除表记录

格式1:删除所有的表记录
delete from 表名;

格式2:仅删除符合条件的记录
delete from 表名
where 条件;

mysql> delete from user where shell is null;
mysql> select * from user where shell is null;
Empty set (0.00 sec)

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM