尝试过这种方法
select crdate from sysobjects where name='temp1' --2009-12-10 19:54:35.030
select * into temp2 from temp1
drop table temp1
select * into temp1 from temp2
select crdate from sysobjects where name='temp1' --2009-12-10 19:56:14.000
drop table temp2
但是 提示有约束在 不行
谁能在不破坏表内数据的情况下解决这个问题