代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/343130/11970878
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/343130/11970880
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/154319/11971218
txt sql.txt
<mark>SQL</mark>语言快速入门(1)
<mark>SQL</mark>是英文Structured Query Language的缩写,意思为结构化查询语言。<mark>SQL</mark>语言的主要功能就是同各种数据库建立联系,进行沟通。按照ANSI(美国国家标准协会)的规定,<mark>SQL</mark>被作为关系型数据库管理系统的标准语言。<mark>SQL</mark>语句可以用来执行各种各样的操作,例如更新数据库中的数据,从数据库中提取数据等。目前,绝大多数流行的关系型数据库管理 ...
www.eeworm.com/read/256730/11975006
sql szznews.sql
www.eeworm.com/read/256730/11975027
sql szznews.sql
www.eeworm.com/read/343104/11975126
sql sample.sql
DROP TABLE IF EXISTS `sample`;
CREATE TABLE `sample` (
`Code` varchar(4) NOT NULL default '',
`Name` varchar(128) NOT NULL default '',
`Abb` char(3) NOT NULL default ''
) TYPE=MyISAM;
IN
www.eeworm.com/read/154253/11977173
sql insert.sql
delete from employee;
insert into employee values('0004','大山',23);
insert into employee values('0005','英华',30);
insert into employee values('0006','柯明',31);
www.eeworm.com/read/343026/11982388
sql 交叉表.sql
--示例
--示例数据
create table tb(ID int,Time datetime)
insert tb select 1,'2005/01/24 16:20'
union all select 2,'2005/01/23 22:45'
union all select 3,'2005/01/23 0:30'
union all select 4,'2005/01/2
www.eeworm.com/read/343026/11982411
sql 基本方法.sql
查询第X页,每页Y条记录
最基本的处理方法(原理):
如果表中有主键(记录不重复的字段也可以),可以用类似下面的方法,当然y,(x-1)*y要换成具体的数字,不能用变量:
select top y * from 表 where 主键 not in(select top (x-1)*y 主键 from 表)
如果表中无主键,可以用临时表,加标识字段解决.这里的x,y可
www.eeworm.com/read/343026/11982545
sql null设置.sql
/*--NULL设置
设置当前数据库中,所有不允许NULL的列为允许NULL
--邹建 2005.05(引用请保留此信息)--*/
DECLARE hCForEach CURSOR GLOBAL
FOR
select --o.name,c.name,t.name,
N'alter table '+quotename(o.name)
+N' alter colu