摘要: --分页 create proc e_page ( @pageIndex int,--当前页索引 @pageSize int, --一页显示几条 @allcount int output, --一共有多少条数据 @name nvarchar(20)=null --模糊查询 ) as declare 阅读全文
posted @ 2018-07-30 07:52 对子、 阅读(135) 评论(0) 推荐(0) 编辑
摘要: create table Student( StuID int identity , StuName varchar (20), StuSex bit, StuAge int, StuKTime time, StuJTime time, StuClassID int,)create table St 阅读全文
posted @ 2018-07-30 07:44 对子、 阅读(218) 评论(0) 推荐(0) 编辑
摘要: USE [CreditMall]GO /****** Object: StoredProcedure [dbo].[proc_Delete] Script Date: 07/27/2018 19:36:17 ******/SET ANSI_NULLS ONGO SET QUOTED_IDENTIFI 阅读全文
posted @ 2018-07-30 07:39 对子、 阅读(154) 评论(0) 推荐(0) 编辑
摘要: /****** Object: StoredProcedure [dbo].[p_paging] Script Date: 07/14/2018 11:18:31 ******/SET ANSI_NULLS ONGO SET QUOTED_IDENTIFIER ONGO CREATE proc [d 阅读全文
posted @ 2018-07-28 11:31 对子、 阅读(239) 评论(0) 推荐(0) 编辑