sqlserver create table

①sql 语句创建(项目使用)

use sps_db
go
if exists(select name from sys.tables where name='event_profile_level2s')
drop table event_profile_level2s
go
create table event_profile_level2s
(id bigint primary key,
version int not null,
created_by varchar(28),
dat datetime not null
)

 

②右键创建(项目使用)

posted @ 2018-05-31 16:10  筱筱的春天  阅读(10789)  评论(0)    收藏  举报