Oracle中如何删除一条记录?
4 回答
临摹微笑
TA贡献1982条经验 获得超2个赞
通过【 DELETE FROM 表名称 WHERE 列名称 = 值 】的方式删除记录。
比如
12 | DELETE FROM Person WHERE LastName = 'Wilson' and rownum<=1; 删除person表中,其中LastName这一列的值等于Wilson的其中一条记录 |
慕少森
TA贡献2019条经验 获得超9个赞
1 2 3 4 5 6 7 | delete from item a where not exists (select 1 from itemactivitydetail b where b.lngitemid = a.lngitemid) or not exists (select 1 from purchaseorderdetail c where c.lngitemid = a.lngitemid);
commit; |
- 4 回答
- 0 关注
- 556 浏览
添加回答
举报
0/150
提交
取消