Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more

Reply
Anonymous
Not applicable

Unable to apply Query, Syntax Near If

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:

Query1
Microsoft SQL: Incorrect syntax near the keyword 'IF'. Incorrect syntax near ')'.
Here is the query I am running
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?
2 REPLIES 2
DARSH06
New Member

Hi @Anonymous ,
                Did you find any solution for this solution am facing the same issue in sql server. Thanks!

v-frfei-msft
Community Support
Community Support

Hi @Anonymous ,

 

Please refer to this case.

https://stackoverflow.com/questions/10839576/incorrect-syntax-near-the-keyword-if

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors