摘要:
---分页查询select top 2 *from student where sno not in (select top 2 sno from student) --not in() 屏蔽掉前两行 在此基础上再取前两行--分页的存储过程 --直接用输入参数当作表名和列名,无法被识别,先用'+... 阅读全文
摘要:
--进出货,存储过程的应用实例create database mydb --创建数据库gouse mydb --连接数据库go--水果表create table Fruit( Ids varchar(50) primary key, [Name] varchar(50) not null... 阅读全文
摘要:
--存储过程--定义变量--declare @+变量+数据类型 --set+变量=值 变量赋值declare @a INTSET @a=12select @adeclare @c INT,@b intset @b=2set @c=1select @c+@b--创建存储过程create proced... 阅读全文
摘要:
----处理字符串select LEFT('abcdef',2) --从左往右select right('abcdef',2) --从右往左select lower('AVc') -- 转化为小写select upper('adsdf')--转化为大写print upper('adsdf')--转化... 阅读全文
摘要:
--18、 假设使用如下命令建立了一个grade表:create table grade(low int,upp int,rank char(1))insert into grade values(90,100,'A')insert into grade values(80,89,'B')in... 阅读全文
摘要:
create table student(Sno int primary key not null,--设置主键Sname varchar(50)not null,Ssex varchar(50)not null,Sbirthday date ,Class varchar(50),)insert ... 阅读全文
摘要:
select *from lol--top 关键字select top 3 *from lol--查询前三行 select top 3 *from lol where age>22 --加入条件select top 3 name,wuqi from lol where age>22 ----关键字 ... 阅读全文
摘要:
select *from student--查询数据库create database s20150417 --新建数据库drop database [20150325] --删除数据库 数字开头的需要用[]括起use s20150417 --使用数据库go --连接符 不写也可以create ta... 阅读全文
摘要:
数据类型--变量与常量--运算符与表达式--语句(if,for)--数组--函数--结构体一、数据类型:(一)内建类型整型(int short long byte uint ushort ulong sbyte),浮点(double float decimal),布尔(bool),字符(char)对... 阅读全文
摘要:
一、概念函数体内调用本函数自身,直到符合某一条件不可继续调用。二、应满足的条件(1).有反复执行的过程(调用自身)。(2).有跳出反复执行过程的条件(函数出口)。三、注意事项1.递归中必须要存在一个循环结束的条件。2.递归函数的每次调用都需要栈来存储,如果次数太多的话容易造成栈溢出。例:每一天卖掉二... 阅读全文