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?
i am getting this error:
does anyone know what am doing wrong?
| |||
|
feedback
|
|
you are treating a CTE as a subquery, where instead it should be used more like a table. try this
| |||
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:
Also, from Transact-SQL Syntax conventions:
So it's worth getting in the habit of putting the semicolons in. | ||||
|
feedback
|