SQL SERVER 2000怎么删除一个表中所有数据?

2024-12-29 01:29:42
推荐回答(4个)
回答1:

delete * from 表名
如果该表有主外键关系,要先删除外键表中的数据

回答2:

del * from tablename

回答3:

drop table 表名

回答4:

delete all from 表名