標籤:
首先建立資料庫:
[Vip]
建立三張表:
分別是:
[VipInformation](會員資訊)
[Log](日誌)
[VipAccount](賬戶許可權)
詳細語句:
1 --建立資料庫[Vip] 2 create database Vip 3 on primary 4 ( 5 name=‘Vip‘ 6 ,filename=‘E:\vip\Vip.mdf‘ 7 ,size=3MB 8 ,maxsize=100MB 9 ,filegrowth=10%10 )11 log on12 (13 name=‘Vip_log‘14 ,filename=‘E:\Vip\Vip_log.ldf‘15 ,size=1MB16 ,maxsize=unlimited17 ,filegrowth=1MB18 )19 Go20 --查詢資料庫[Vip]21 use vip22 --建立表[VipInformation](會員資訊)23 create table VipInformation24 (25 vId int identity(1,1) primary key26 ,vName nvarchar(30)27 ,vGender nchar(2)28 ,vAge int29 ,vAddress nvarchar(50)30 ,vPhone varchar(20)31 )32 --查詢表[VipInformation]33 select * from VipInformation34 --建立表[Log](日誌)35 create table [Log]36 (37 id int identity(1,1) primary key38 ,vName nvarchar(30)39 ,situation nchar(10)40 ,[time] datetime41 ,vType nvarchar(50)42 )43 --查詢表[Log]44 select * from [log]45 --建立表[VipAccount](賬戶許可權)46 create table VipAccount47 (48 vId int identity(1,1) primary key49 ,vUserName nvarchar(20) not null50 ,vUserPwd nchar(20) not null51 ,UserType nvarchar(50) null52 )53 --查詢表[VipAccount]54 select * from VipAccount55 --插入表[VipAccount]56 insert into VipAccount(vUserName,vUserPwd,UserType) values(‘admin‘,‘123‘,‘Administrator‘)
待續。。。
C#_會員管理系統(使用者登入)