Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hello,
I am trying to run a query to create a temporary table so I can do a join on it later in the query. It allows me to run the query and returns 1 column with the number of rows affect but I am unable to apply the query. The error message is:
IF OBJECT_ID('tempdb.dbo.#temptable1', 'U') IS NOT NULL DROP TABLE #temptable1;
create table #temptable1 (id int primary key,date datetime, p_count smallint);
WITH temptable1 AS (
(SELECT ID,DATE,1 P_COUNT
FROM myTable
WHERE
myTable.[DATE]>=CONVERT (datetime,'07/01/2019 00:00:00' ,101)
and myTable.[DATE]<=CONVERT (datetime,'07/31/2019 23:59:59' ,101))
)
insert into #temptable1 select * from TempTable1;Any idea why this happens?Hi @Anonymous ,
Did you find any solution for this solution am facing the same issue in sql server. Thanks!
Hi @Anonymous ,
Please refer to this case.
https://stackoverflow.com/questions/10839576/incorrect-syntax-near-the-keyword-if
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 47 | |
| 44 | |
| 39 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 70 | |
| 68 | |
| 32 | |
| 27 | |
| 25 |