Sql

create database Users
go
use Users
go
create table Users
(
 userId int primary key identity(1001,1),
 username varchar(50),
 password varchar(50)
)
go
insert into Users values('admin','123456')
go
select * from Users
go
原文地址:https://www.cnblogs.com/scsuns520/p/1633034.html