ฉันมีคิวรี่ MS SQL CTE ซึ่งฉันต้องการสร้างตารางชั่วคราว ฉันไม่แน่ใจว่าจะทำอย่างไรเพราะจะทำให้เกิดInvalid Object name
ข้อผิดพลาด
ด้านล่างนี้เป็นข้อความค้นหาทั้งหมดสำหรับการอ้างอิง
SELECT * INTO TEMPBLOCKEDDATES FROM
;with Calendar as (
select EventID, EventTitle, EventStartDate, EventEndDate, EventEnumDays,EventStartTime,EventEndTime, EventRecurring, EventStartDate as PlannedDate
,EventType from EventCalender
where EventActive = 1 AND LanguageID =1 AND EventBlockDate = 1
union all
select EventID, EventTitle, EventStartDate, EventEndDate, EventEnumDays,EventStartTime,EventEndTime, EventRecurring, dateadd(dd, 1, PlannedDate)
,EventType from Calendar
where EventRecurring = 1
and dateadd(dd, 1, PlannedDate) <= EventEndDate
)
select EventID, EventStartDate, EventEndDate, PlannedDate as [EventDates], Cast(PlannedDate As datetime) AS DT, Cast(EventStartTime As time) AS ST,Cast(EventEndTime As time) AS ET, EventTitle
,EventType from Calendar
where (PlannedDate >= GETDATE()) AND ',' + EventEnumDays + ',' like '%,' + cast(datepart(dw, PlannedDate) as char(1)) + ',%'
or EventEnumDays is null
order by EventID, PlannedDate
option (maxrecursion 0)
ฉันจะขอบคุณจุดในทิศทางที่ถูกต้องหรือถ้าฉันสามารถสร้างตารางชั่วคราวจากแบบสอบถาม CTE นี้