with cte as
(
select rowid from batchinfo where datapath like '%thc%'
)

select * from qvalues where rowid in cte

i am getting this error:

Msg 102, Level 15, State 1, Line 6 Incorrect syntax near 'cte'.

does anyone know what am doing wrong?

link|improve this question

77% accept rate
feedback

2 Answers

up vote 8 down vote accepted

you are treating a CTE as a subquery, where instead it should be used more like a table.

try this

;with cte as
(
select rowid from batchinfo where datapath like '%thc%'
)
select * from qvalues 
INNER JOIN cte on cte.rowid=qvalues.rowid
link|improve this answer
I don't think you need the words "more like" in "..used more like a table" as they can only be used as tables :) +1 for putting the semicolon at the start of the statement to avoid errors when CTE are used in larger statements. – Tony Dec 10 '10 at 23:16
feedback

As casually alluded to in Al W's answer (and Tony's comment). The fact that the error is being described as occurring on line 6 means that it's not the first statement in the batch. Which means that you need to have a semicolon before the WITH keyword:

When a CTE is used in a statement that is part of a batch, the statement before it must be followed by a semicolon.

Also, from Transact-SQL Syntax conventions:

Although the semicolon is not required for most statements in this version of SQL Server, it will be required in a future version.

So it's worth getting in the habit of putting the semicolons in.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.