SQL 2000 - DRVTBL?
我正在尝试了解我需要修复的历史存储过程。 我找到了这个DRVTBL关键字,但我不知道它是什么意思??? (这是sql2000数据库)
SELECT ...
FROM (
...)
) DRVTBL
I'm trying to understand a historical stored procedure I need to fix.
I found this DRVTBL key word, and I couldn’t find out what it means???
(This is a sql2000 database)
SELECT ...
FROM (
...)
) DRVTBL
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
从您发布的查询来看,
DRVTBL
看起来像一个别名。 其工作方式类似于 T-SQL 查询中的临时表。 SQL Server 2005 有此功能的高级版本,称为公用表表达式< /a>.示例 -
这将创建一个别名表,其中包含名称以
A
开头的所有Employee
,而外部查询将依次选择名称为 <代码>阿尔伯特。使用 CTE 可以将其写为 -
DRVTBL
, from the query you have posted, looks like an alias. The work like temporary tables in your T-SQL Query. SQL Server 2005 has a little bit advanced version of this functionality, called Common Table Expressions.An example -
This will create an aliased table containing all the
Employee
s whose name starts withA
, and the outer query will, in turn, select the employees with the nameAlbert
.Same can be written using CTE as -
你能显示完整的SQL语句吗?
据我现在所见,DRVTBL 不是关键字,而是为 FROM 子句中使用的子查询指定的别名。
Can you show the complete SQL statement ?
As far as I can see right now, DRVTBL is not a keyword, but an alias that has been given to the subquery that is used in your FROM clause.
DRVTBL 是其前面的子查询的别名。
当您在这样的 SELECT 中使用子查询时,您必须为其指定一个别名。 如果删除 DRVTBL,则会出现错误。 然后它就不必继续在其他地方使用。
DRVTBL is an alias for the subquery that precedes it.
When you use a subquery within a SELECT like this, you have to give it an alias. If you remove DRVTBL, you will get an error. It doesn't then have to go on and be used anywhere else.