eg:COMPONENT表数据如下 1.执行select * from (select com.*,rownum r_num from (select * from COMPONENT)com where rownum < 8) where r_num > 2 2.执行 select * from (select com.*,rownum r_num from (select * from COMPONENT)com where rownum =1) where r_num <…
1 学习计划 1.实现区域导入功能 n OCUpload一键上传插件使用 n 将文件上传到Action n POI简介 n 使用POI解析Excel文件 n 完成数据库操作 n 使用pinyin4J生成简码和城市编码 2.区域分页查询 n 页面调整 n 服务端实现 3.重构分页代码 n BaseAction n 子类Action 4.分区添加功能 n 什么是分区 n 页面调整(combobox使用) n 服务端实现 2 实现区域导入功能 2.1 jquery OCUpload一键上传插件使用 O…
if giPage = 1 then begin sSQL := 'SELECT TOP 10 * FROM dw_demo WHERE '+sWhere +' ORDER BY '+sOrder+' DESC'; end else begin sSQL := 'select top 10 * from dw_demo where id not in (select top '+(giPage*10-10).ToString+' id ' +'from dw_demo order by '+sO…
SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO alter proc sp_SelectInfomationByKeyWord--创建一个存储过程 --定义变量 @keyWord nvarchar(20),--查询关键字 @min int ,--当前页面显示数据最小编号 @max int --当前页面显示数据最大编号 as declare @str nvarchar(1000);--定义一个字符串 --对字符串@str赋值 set @str =…