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
)

 

②右键创建(项目使用)


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM