代码搜索:SqL
找到约 10,000 项符合「SqL」的源代码
代码结果 10,000
www.eeworm.com/read/432958/8560222
sql checkin.sql
CREATE TABLE CheckIn
(CheckinMonth Char(10) NOT NULL,
Emp_Id Int NOT NULL,
DaysOfMonth TinyInt,
qqDays Decimal(4,1),
bjDays Decimal(4,1),
sjDays Decimal(4,1),
www.eeworm.com/read/432958/8560225
sql salaryrules.sql
CREATE TABLE SalaryRules
(RuleType TinyInt NOT NULL,
RuleAmount Decimal(10,2),
)
www.eeworm.com/read/432958/8560229
sql users.sql
CREATE TABLE Users
(UserName Varchar(40) Primary Key,
Pwd Varchar(40) NOT NULL,
Emp_Id Int NOT NULL,
User_Type TinyInt NOT NULL
)
INSERT INTO Users Values('HrManager', 'HrMa
www.eeworm.com/read/432958/8560231
sql evaluation.sql
CREATE TABLE Evaluation
(EvaMonth Char(10) NOT NULL,
Emp_Id Int NOT NULL,
Performance Varchar(200),
SupervisorEvaluation Varchar(200),
PrizeFactor1 TinyInt,
www.eeworm.com/read/289162/8570723
sql webshop.sql
www.eeworm.com/read/388803/8574317
sql store.sql
www.eeworm.com/read/289113/8575621
txt sql.txt
use master
go
if exists (select * from dbo.sysdatabases where name = 'Room')
drop database Room
GO
create database Room
go
use Room
go
if exists (select * from dbo.sysobjects where id
www.eeworm.com/read/432742/8576979
sql mcaichan.sql
create table mcaichan
(id int primary key auto_increment,
dong varchar(50),
fangjian varchar(50),
date varchar(50),
goods varchar(50),
people varchar(50),
cash varchar(50),
peichang v
www.eeworm.com/read/432742/8576981
sql pubcaichan.sql
create table pubcaichan
(id int primary key auto_increment,
pubroom varchar(50),
pubdesk varchar(50),
pubtable varchar(50),
pubtelephone varchar(50),
pubreshuiqi varchar(50),
pubdiansha
www.eeworm.com/read/432742/8576983
sql leave.sql
create table leaveshool
( id int primary key auto_increment,
name varchar(20),
xuehao varchar(20),
sex varchar(10),
goods varchar(50),
onduty varchar(20),
timeout varchar(50),
yu