从动态生成的表列表中查看
所以我基本上有一个包含表名称列表的表。所有这些列出的表都具有完全相同的结构。
然后我有一个查询模板,其中包含表名称的占位符。
我需要创建一个视图,它应该从该设置表中列出的所有表中返回 UNIONed 查询的结果。
到目前为止,我所做的是创建一个用户定义的函数,它将准备一个完整的 UNIONed SQL 语句。
但这就是我被困住的地方。我不知道如何在视图中执行它并返回它返回的任何内容。
So I basicly have a table which has a list of table names. All these listed tables have exact same structure.
Then I have a query template, with place holder for table name.
I need to create a view, which should return results of that query UNIONed from all the tables listed in that one setup table.
So far what I've done is create a user defined function, which would prepare a complete UNIONed SQL statement.
But this is where I'm stuck. I can't figure out how to execute it in a view and return whatever it returns..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的函数返回 SQL 语法。
我认为UDF无法执行动态sql,所以我的方法不起作用。到目前为止,我已经通过生成视图解决了我手头的问题。但我仍然更喜欢一种更动态的方式..
My function returns SQL syntax.
I figured that UDF can't executed dynamic sql, so my method won't work. So far I've solved my issue at hand by generating views. But I would still prefer a more dynamic way..