oracle刪除語(yǔ)句
oracle刪除語(yǔ)句?
慕無(wú)忌1623718
2018-09-30 14:10:59
TA貢獻(xiàn)1830條經(jīng)驗(yàn) 獲得超3個(gè)贊
刪除滿足條件的行:
delete from table_name where your_conditions;
commit;
刪除表中的全部數(shù)據(jù):
trancate table table_name;
刪除表:
drop table table_name;
舉報(bào)