Tagged Questions

A temporary result set that is defined within the execution scope of a single SELECT, INSERT, UPDATE, DELETE, or CREATE VIEW statement.

learn more… | top users | synonyms (2)

19
votes
7answers
7k views

Difference between CTE and SubQuery?

From this post How to use ROW_NUMBER in the following procedure? There are two versions of answers where one uses a SubQuery and the other uses a CTE to solve the same problem. Now then, what is the ...
14
votes
1answer
2k views

Common Table Expression (CTE) in linq-to-sql?

Is it possible to do common table expressions (CTE) (like shown below) in Linq to SQL. I'm pretty new to CTE's as well as Linq to SQL. I'm currently Stored Proc free (but not against them by any ...
10
votes
6answers
8k views

Which are more performant, CTE or temporary tables?

Which are more performant, CTE or temporary tables?
8
votes
3answers
243 views

SQL Multi Condition CTE Recursion

I the database i have the 2 following pieces of information for each identifier. The company that controls them, and companies where they have small bits of control. Something along the lines, 2 ...
8
votes
2answers
1k views

When to use Common table expression (CTE)

I have start reading about Common table expression and cannot think of usecase where would i need to use it. Seem like its just a redundant to dervied tables. I am sure I am not udnerstanding it ...
8
votes
5answers
1k views

Bizarre performance issue: Common Table Expressions in inline User-Defined Function

Here's a brain-twister for the SQL guys - can anyone think of a reason why the first of these functions performs fine, and the second one runs dog-slow? Function A - Typically finishes in ~5 ms ...
8
votes
4answers
3k views

Recursive SQL CTE's and Custom Sort Ordering

Image you are creating a DB schema for a threaded discussion board. Is there an efficient way to select a properly sorted list for a given thread? The code I have written works but does not sort the ...
8
votes
9answers
10k views

Hierarchical data in Linq - options and performance

I have some hierarchical data - each entry has an id and a (nullable) parent entry id. I want to retrieve all entries in the tree under a given entry. This is in a SQL Server 2005 database. I am ...
7
votes
1answer
233 views

How to properly label branches of a tree in a depth first search

I have a tree with a structure like this: __2__3__4 / \__5__6 0__1___7/__8__9 \\ \\__10__11__12 \__ __ __ 13 14 15 Node 1 has four children (2,7,10,13), nodes 2 ...
7
votes
2answers
155 views

How CTE really works?

I came across this CTE solution for concatenating row elements and I thought it's brilliant and I realized how powerful CTEs can be. However, in order to use such a tool effectively I need to know ...
7
votes
2answers
106 views

use recursive common table expressions to find consecutive no.s from two tables

i have the following tables: Actual Optional ------ -------- 4 3 13 6 20 7 26 14 19 21 ...
7
votes
2answers
236 views

Simulating CTE recursion in C#

Say that have the following CTE that returns the level of some tree data (adjacency model) that I have (taken from Hierarchical data in Linq - options and performance): WITH hierarchy_cte(id, ...
7
votes
3answers
481 views

To CTE or not to CTE

Having been stuck with SQL2000 for far too long, I've not really had a lot of exposure to Common Table Expressions. The answers I've given here (#4025380) and here (#4018793) have gone against the ...
7
votes
5answers
3k views

SQL 2005 CTE vs TEMP table Performance when used in joins of other tables

I have a complex query that I need to use in a subsequent query (actually update statement). I have tried both using a CTE and a temp table. The performance using the CTE is horrible vs the temp ...
7
votes
4answers
8k views

Incorrect syntax near the keyword 'with'…previous statement must be terminated with a semicolon

Im using SQL Server 2005 . I have 2 WITH Clauses in my stored procedure WITH SomeClause1 AS ( SELECT .... ) WITH SomeClause2 AS ( SELECT .... ) But the error occurs Incorrect syntax near the ...
7
votes
4answers
7k views

how do you Use the “With” Clause in MySQL

I am converting all my MSSQL queries to mysql and my queries that has "with" in them are all failing with t1 as ( SELECT article.*, userinfo.*, category.* FROM question INNER JOIN userinfo ...
7
votes
1answer
1k views

CTE to traverse back up a hierarchy?

I can find all the children of a given record in a hierarchical data model (see code below) but I'm not sure how to traverse back up the Parent/Child chain with a given Child ID. Can anyone point me ...
7
votes
6answers
2k views

Best Way to Store/Access a Directed Graph

I have around 3500 flood control facilities that I would like to represent as a network to determine flow paths (essentially a directed graph). I'm currently using SqlServer and a CTE to recursively ...
6
votes
2answers
1k views

SORTING Hierarchical Queries in SQL Server 2005

I have following issue: I have a table for maintaining the hierarchical data. I'd like to use CTE from SQL 2005. WITH tree (id, parentid, code, name) AS ( SELECT id, ofs.ParentID, ofs.code, ...
6
votes
2answers
3k views

SQL Server Performance: derived table vs. common table expression (CTE)

Is there any performance gain using a CTE over a derived table?
5
votes
1answer
75 views

How to group by two data fields in a common table expression

I need to compare the final balances of two tables from different clients grouped by ID. The tables have the same ID's But one has multiple ID entries and the other does not. I need to sum row from ...
5
votes
1answer
117 views

SQL Server: Common Table Expression, why semicolon?

Usually in SQL Server Common Table Expression clause there is semicolon in front of the statement, like this ;WITH OrderedOrders AS --semicolon here ( SELECT SalesOrderID, OrderDate, ...
5
votes
1answer
1k views

T-SQL CTE Error: Types don't match between the anchor and the recursive part

I get the following error when I try to execute a particular recursive CTE: Msg 240, Level 16, State 1, Line 8 Types don't match between the anchor and the recursive part in column "data_list" of ...
5
votes
2answers
571 views

SQL Server 2008 CTE Recursion

I am trying to perform what I believe is a difficult recursion using a CTE is SQL Server 2008. I can't seem to wrap my head around this one. In the below examples you can assume a fixed depth of ...
5
votes
5answers
1k views

why can't I access my CTE after I used it once?

My stored procedure looks like: WITH MYCTE(....) AS ( ... ) UPDATE ... (using my CTE) DELETE ( using my CTE) <--- says the object, my CTE, doesn't exist Can I only use it once?
5
votes
9answers
354 views

SQL Elaborate Joins Query

I'm trying to solve the below problem. I feel like it is possible, but I can't seem to get it. Here's the scenario: Table 1 (Assets) 1 Asset-A 2 Asset-B 3 Asset-C 4 Asset-D Table 2 (Attributes) 1 ...
5
votes
6answers
2k views

Prevent recursive CTE visiting nodes multiple times

Consider the following simple DAG: 1->2->3->4 And a table, #bar, describing this (I'm using SQL Server 2005): parent_id child_id 1 2 2 3 3 4 //... other ...
5
votes
2answers
3k views

Linq-to-Sql: recursively get children

I have a Comment table which has a CommentID and a ParentCommentID. I am trying to get a list of all children of the Comment. This is what I have so far, I haven't tested it yet. private ...
4
votes
1answer
133 views

Visiting a directed graph as if it were an undirected one, using a recursive query

I need your help about the visit of a directed graph stored in a database. Consider the following directed graph 1->2 2->1,3 3->1 A table stores those relations: create database test; ...
4
votes
3answers
117 views

Can I use a SQL Server CTE to merge intersecting dates?

I'm writing an app that handles scheduling time off for some of our employees. As part of this, I need to calculate how many minutes throughout the day that they have requested off. In the first ...
4
votes
3answers
146 views

Alternatives to a recursive CTE inside an 'exists' correlated subquery?

I have a situation where I need to be able to see if a given person is within a user/manager hierarchy. I need to be able to do this for a set of users against a set of rules (don't worry about this, ...
4
votes
3answers
83 views

Do CTEs use any space in tempdb?

I've tried googling, but maybe it's the keywords I used, I have not been able to find a straightforward answer. So the question is simple and straight forward. Do CTEs use any space in tempdb or ...
4
votes
2answers
167 views

Possible recursive CTE query using date ranges

Not sure how to even phrase the title on this one! I have the following data: IF OBJECT_ID ('tempdb..#data') IS NOT NULL DROP TABLE #data CREATE TABLE #data ( id UNIQUEIDENTIFIER ,reference ...
4
votes
2answers
205 views

How do I get rowcount of a cte in a separate dataset?

I have identified a way to get fast paged results from the database using CTEs and the Row_Number function, as follows... DECLARE @PageSize INT = 1 DECLARE @PageNumber INT = 2 DECLARE @Customer ...
4
votes
3answers
709 views

Sql Server - OUTER APPLY versus Sub-qeries

Please consider the following 2 statements in Sql Server: This one is using Nested sub-queries: WITH cte AS ( SELECT TOP 100 PERCENT * FROM Segments ORDER BY InvoiceDetailID, ...
4
votes
3answers
165 views

How can I combine CTEs with a FOR XML clause?

I'm trying to generate some XML with various levels of nesting, and at the risk of over-simplifying, the output XML will be loosely of the format: <invoice number="1"> <charge code="foo" ...
4
votes
1answer
899 views

Adding an INDEX to a CTE

Should be a pretty straight forward question. Can I add an INDEX to a Common Table Expression (CTE)?
4
votes
1answer
208 views

Exiting from recursive common table expression once the result set contains some value

Given the following table: create table TreeNode ( ID int not null primary key, ParentID int null foreign key references TreeNode (ID) ) How could I write a common table expression to start at ...
4
votes
2answers
1k views

Recursive CTE to find parent records

first i must admit that i'm not very familiar with sql server's recursive CTE's but i think this is the best approach. I have a table tabData. Its PK is named idData and there is a self referencing ...
4
votes
1answer
331 views

SQL CTE and ORDER BY affecting result set

I've pasted a very simplified version of my SQL query below. The problem that I'm running into is that the ORDER BY statement is affecting the select results of my CTE. I haven't been able to ...
4
votes
3answers
2k views

How to reference one CTE twice?

I have a very fat common table expression which includes row numbers so that I can return a paged result set. I also want to return the total number of records that match the query before I page the ...
4
votes
3answers
3k views

CTE error: “Types don't match between the anchor and the recursive part”

I am executing ;with cte as ( select 1 as rn, 'name1' as nm union all select rn+1,nm = 'name' + CAST((rn+1) as varchar(255)) from cte a where rn<10) select * from cte and is receiving the error ...
4
votes
3answers
1k views

Can I use WITH in TSQL twice to filter a result set like my example?

I need to do something like this but SQL Server 2008 doesn't like it. My query is actually more complex than this and I realize this isn't the best way to accomplish what I'm doing but my focus is on ...
3
votes
1answer
26 views

Is this way is optimized to retrieve values which are not exist in database?

To retrieve values which are not in db, I use Common Table Expression like this : ;WITH new_id (id) AS ( SELECT '0x01' UNION ALL SELECT '0x00' UNION ALL SELECT '0x03' UNION ALL SELECT '0x04' ...
3
votes
2answers
54 views

Find the second appointment date per customer

It's a badly worded title but I can't come up with anything better, sorry! We have a table which effectively looks like this (trimmed for brevity): create table Appointment ( AppointmentId ...
3
votes
2answers
84 views

Is a SQL Server recursive CTE considered a loop?

I was under the impression that recursive CTEs were set based, but in a recent SO post someone mentioned that they are loops. Are recursive CTEs set based? Am I wrong to assume that a set based ...
3
votes
1answer
84 views

Updating record using CTE?

ALTER PROCEDURE SP_PriceUpdate -- Add the parameters for the stored procedure here @PriceRuleID INT = NULL, @CategoryID INT = NULL, @SiteID INT = NULL AS SET NOCOUNT ON; BEGIN WITH PriceCTE(ProductID, ...
3
votes
2answers
214 views

Common Table Expression in Sub-Query

I would request for help in understanding which all RDBMS from Oracle, DB2, Sybase support a common table expression (CTE) in a sub-query. I am aware that PostgreSQL does while MS SQL Server does ...
3
votes
1answer
164 views

Using EXEC() or SP_EXECUTESQL with SQL Common Table Expressions

How do I use EXEC(@SQL) or EXEC SP_EXECUTESQL(@SQL) with Common Table Expressions? Below does not work. WITH CTE_Customer (ID, Name) AS ( EXEC (@strSqlCommand) )
3
votes
3answers
189 views

Using CTE instead of Cursor

I have the following table structure. I just want to update SubId to all the rows where it is null and where the RawLineNumber is ascending by 1 and also the SeqNumber ascending by 1. ...

1 2 3 4 5 6