我想创建一个包含三列名为{ID,ViewName,Query}的表。并在此表中存储一些sql select语句,如:
`Assume view's table named tblQueries`
`| ID | ViewName | Query |`
`| 1 | vwPersons |Select * from tblPersons |`
`| 2 | vwPosts |Select * from tblPosts |`
现在的问题是:如何从表中存储的视图中进行选择。例如,我想选择我的数据库中的所有人。我需要这样的东西:
Assume the table named tblQueries
Select * from (select ViewName from tblQueries where ViewName=N'vwPersons')
我希望列出来自tblPerson的所有记录。任何想法?