博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SQL - 存储过程读取视图数据
阅读量:5246 次
发布时间:2019-06-14

本文共 664 字,大约阅读时间需要 2 分钟。

set ANSI_NULLS ONset QUOTED_IDENTIFIER ONgoALTER procedure [dbo].[proc_GetStoreBoxProductsForOther]@userid intasbeginselect storeid,shopid,shopname,canusetimes,unit,shopprice,isattach,istime,displaypic,flashdir,iwidth,iheight,iszorz,typeid,displaymode,userid,operation,oriposition,cemeteryid,displayout,isvipbuy fromview_storeandstorezheuangzhi whereuserid=@userid andusingout=0andparentid<=0and((heavenid in (select [cemeterysid] from [cemeterys] where [userid]=@userid)) or (heavenid='-1' or heavenid=''))end view_storeandstorezheuangzhi  --为视图

  

posted on
2011-09-06 23:39 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/LYshuqian/archive/2011/09/06/2169311.html

你可能感兴趣的文章
c++||template
查看>>
[BZOJ 5323][Jxoi2018]游戏
查看>>
编程面试的10大算法概念汇总
查看>>
Vue
查看>>
python-三级菜单和购物车程序
查看>>
条件断点 符号断点
查看>>
水平垂直居中
查看>>
MySQL简介
查看>>
设计模式之桥接模式(Bridge)
查看>>
jquery的$(document).ready()和onload的加载顺序
查看>>
Python Web框架Django (五)
查看>>
.net学习之继承、里氏替换原则LSP、虚方法、多态、抽象类、Equals方法、接口、装箱拆箱、字符串------(转)...
查看>>
【codevs1033】 蚯蚓的游戏问题
查看>>
【程序执行原理】
查看>>
python的多行注释
查看>>
连接Oracle需要jar包和javadoc文档的下载
查看>>
UVA 10976 - Fractions Again?!
查看>>
Dreamweaver cc新版本css单行显示
查看>>
【android】安卓的权限提示及版本相关
查看>>
JavaScript可否多线程? 深入理解JavaScript定时机制
查看>>