代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/350443/10742907
sql classes.sql
CREATE TABLE Classes
(Class_Id Int Primary Key,
Class_Name Varchar(40) NOT NULL,
Describe Varchar(400),
UpperId SmallInt NOT NULL
)
www.eeworm.com/read/350443/10742933
sql scores.sql
CREATE TABLE Scores
(LessonId Int NOT NULL,
Student_Id Int NOT NULL,
Score Tinyint
)
www.eeworm.com/read/350443/10743043
sql users.sql
CREATE TABLE Users
(UserName Varchar(40) Primary Key,
Pwd Varchar(40) NOT NULL
)
INSERT INTO Users Values('Admin', 'Admin')
www.eeworm.com/read/350443/10743065
sql evaluation.sql
CREATE TABLE Evaluation
(EvaId Int Primary Key IDENTITY,
EvaDate Char(10) NOT NULL,
Student_Id Int NOT NULL,
EvaType Bit,
Memo Varchar(200)
)
www.eeworm.com/read/276399/10743272
sql 建库.sql
use master
go
Create database Thestysmerofedutions
on
(
name = thestysmerofedution,
filename = 'E:\Program Files\Microsoft SQL Server\MSSQL\Data\thestysmerofedution.mdf',
size = 6,
maxsize = 2
www.eeworm.com/read/276399/10743275
sql 系表.sql
create table Deptment
(
Dno char(10),
Dname char(40),
Dtel char(15),
Dmanger char(20),
primary key(Dno)
)
www.eeworm.com/read/276399/10743283
sql 学生表.sql
create table student
(
Sno char(10),
Sname char(20),
Sex char(10),
Sbirth datetime,
Shome char(29),
Stel char(10),
Cno char(10),
primary key(Sno),
foreign k
www.eeworm.com/read/276399/10743290
sql 班级表.sql
create table Class
(
Cno char(10),
Chowmanystudent char(10),
Cmaxresult char(10),
Cminresult char(10),
Cavergeresult char(10),
Tno char(10),
primary k
www.eeworm.com/read/276399/10743295
sql 教师表.sql
create table Teacher
(
Tno char(10),
Tname char(20),
Tabilty char(20),
Ttle char(20),
Dno char(10),
primary key(Tno),
foreign key(Dno)references Deptment(Dno)
)
www.eeworm.com/read/421298/10743486