请教,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):

不用那个 *