oracle删除语句

oracle中删除语句怎么写

第1个回答  2009-12-25
删除满足条件的行:
delete from table_name where your_conditions;
commit;
删除表中的全部数据:
trancate table table_name;
删除表:
drop table table_name;本回答被提问者采纳
第2个回答  2009-12-25
一般的删除语句?
delete your_table where your_column=xxx;
其他意思请说明白
第3个回答  2009-12-25
delete from 表 where 表.列数据= 啥啥啥;
commit;

自己试试吧
第4个回答  2009-12-25
delete from table where condition
exmple:delete from test where id=1
相似回答