介绍
使用sql命令删除数据
命令
sql
delete from 表名 [where 条件表达式];
例子
将a
表id
等于1
的数据删除:
sql
delete from a where id=1;