
sqlServer
iteye_12369
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
SQL SERVER WTIH AS
[code="java"]with result as ( select id, parentid,name from syst_dept where id = 'b649a10a3fa8017b003165fea703fa81' union all select a.id,a.parentid,a.name from syst_dept a join result b on ...原创 2013-05-03 16:20:54 · 177 阅读 · 0 评论 -
sql server 2008存储过程分页
[code="java"] USE [hospital] GO /****** Object: StoredProcedure [dbo].[P_PAGE] Script Date: 10/21/2012 10:33:48 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO ALTER PROCEDURE [db...原创 2012-10-14 15:49:00 · 213 阅读 · 0 评论 -
sqlServer权限设置
drop role ProgramerRole [code="java"] --创建角色 create role ProgramerRole --用于创建 存储过程 视图 grant create procedure,create view to ProgramerRole --execute用以执行存储过程,alter用以创建、修改存储过程...原创 2012-11-12 19:29:23 · 385 阅读 · 0 评论