Introduction - If you have any usage issues, please Google them yourself
create table userInfo --用户信息表
(
customerID int identity(1,1),--顾客编号
customerName varchar(8) not null,--姓名
pid varchar(18) not null,--身份证号
telephone varchar(13) not null,--电话
address varchar(50)--地址
)