建立临时表

来源:互联网 发布:c语言做网站 编辑:程序博客网 时间:2024/06/07 18:18
create table #table_name1
(
id 
int IDENTITY (11),
Member_RegTime 
smalldatetime

)
drop table #table_name1--最后把临时表删除
原创粉丝点击