gpt4 book ai didi

sql - 在查询中使用 CTE(公用表表达式)

转载 作者:行者123 更新时间:2023-12-01 09:08:06 25 4
gpt4 key购买 nike

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

select * from qvalues where rowid in cte

我收到此错误:

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

有谁知道做错了什么?

最佳答案

您将 CTE 视为子查询,而应该更像表一样使用它。

试试这个

;with cte as
(
select rowid from batchinfo where datapath like '%thc%'
)
select * from qvalues
INNER JOIN cte on cte.rowid=qvalues.rowid

关于sql - 在查询中使用 CTE(公用表表达式),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4413885/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com