gpt4 book ai didi

c# - 在 View 后面获取sql语句

转载 作者:太空宇宙 更新时间:2023-11-03 14:24:59 24 4
gpt4 key购买 nike

我有一个从 sql server (2005) 获取数据的 c# 应用程序 (2008)。我在 sql server 中有一个 View 准备显示数据,像这样(简化):

select Places.Name as [Location], Parts.Name as [Part Name]
from Places inner join Parts
on Places.Id=Parts.Location

我必须使用代码中内置的“where”语句来过滤它,例如:

where (Places.Id=1 or Places.Id=15) and 
(Parts.Id=56 or Parts.Id=8 or Parts.Id=32)

我当然可以在我的代码中保留基本的 select 语句,但我喜欢只在一个地方定义一些东西 :) 问题是是否有任何方法可以在 sql server 的 View 后面获取 select 语句?或者获取存储过程的内容?非常感谢!

最佳答案

看看Information Schema View ,您可能会找到您的解决方案。

关于c# - 在 View 后面获取sql语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4332466/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com