请教,ORACLE的删除语句怎么写?是DELETE * FROMTABLE吗

2024-11-09 09:45:49
推荐回答(4个)
回答1:

truncate table [tablename]这个速度比较快
delete from [tablename]这个是常规删除

回答2:

delete from table where .....;

回答3:

delete table where *********

回答4:

不用那个 *