SQl語句收集
發(fā)布時間:2009/4/2 20:22:55 作者: 閱讀:696
廣告:
SELECT constraint_name
FROM information_schema.table_constraints
WHERE (constraint_type = 'primary key') AND (table_name = 'person')
得到約束名:aaaaaperson_PK
alter table tb
drop PK_tb --主鍵約束名
alter table person drop column sfz
exec sp_help '表名'就可以看到表結(jié)構(gòu)
insert newtable select * from talbnemae 建表
mssql復(fù)制新表帶數(shù)據(jù) SELECT * INTO kfzlhao FROM kfzl
-------------------------------------------------------------------------
廣告:
相關(guān)文章