
复制create database data_Test GO use data_Test GO create table tb_TestTable --创建表 ( id int identity(1,分法及1) primary key, userName nvarchar(20) not null, userPWD nvarchar(20) not null, userEmail nvarchar(40) null ) GO 1.2.3.4.5.6.7.8.9.10.11.12.13.14.15.16.17.18.19.20.21.22.23.


