MSSQL起手式

来源:互联网 发布:淘宝返现规则 编辑:程序博客网 时间:2024/05/18 01:07


use db_2008
go
if object_id(N'dbo.test',N'u') is not null
drop table dbo.test
go
create table test
(ascii_id int,chara nvarchar)
go

insert into test values(1,1),(2,2)
end
go
select * from test
go
drop table test

原创粉丝点击