recursive query meaning in English
递归查询
Examples
- Uses a recursive query common table expression to return the direct and indirect employees of the specified manager
Dbo . uspgetmanageremployees使用递归查询(公用表表达式)来返回指定经理的直接和间接下属。 - Uses a recursive query common table expression to return the direct and indirect managers of the specified employee
Dbo . uspgetemployeemanagers使用递归查询(公用表表达式)来返回指定雇员的直接和间接上司。 - Uses a recursive query common table expression to return all product assemblies that use the specified product component
Dbo . uspgetwhereusedproductid使用递归查询(公用表表达式)来返回使用指定产品组件的所有产品部件。 - In earlier versions of sql server , a recursive query usually requires using temporary tables , cursors , and logic to control the flow of the recursive steps
在sql server的早期版本中,递归查询通常需要使用临时表、游标和逻辑来控制递归步骤流。 - A recursive cte can greatly simplify the code required to run a recursive query within a select , insert , update , delete , or create view statement
递归cte可以极大地简化在select 、 insert 、 update 、 delete或create view语句中运行递归查询所需的代码。