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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

DECLARE statement in PBI using DirectQuery

Hi,

I'm using a direct query SQL in PBI. While using a DECLARE statement, it throws an error

 

Incorrect syntax near the keyqord 'DECLARE'. Incorrect syntax near ')'

 

My SQL statement is as follows:

DECLARE @effect_date as date;
Set @effect_date= (select distinct effective_date from in.input_table)

 

select * from abc

join ....

group by....

 

Any help is greatly appreciated.

4 REPLIES 4
mimimon
New Member

Hey if anyone still looking for solution try to change your query , use cte instead of declare .

 

using declare :

DECLARE @effect_date as date;
Set @effect_date= (select distinct effective_date from in.input_table)

 

select * from abc

join ....

group by....

 

 

using cte:

 

WITH date AS (
SELECT
distinct effective_date from in.input_table AS effect_date)

 

SELECT * FROM date

 

hope it helps

Anonymous
Not applicable

Hi @Anonymous ,

 

Can this query return data correctly in SSMS?

 

Best Regards,

Jay

smpa01
Community Champion
Community Champion

@Anonymous can you try this

DECLARE @effect_date date= (select distinct effective_date from in.input_table)

 

select * from abc

join ....

group by....


========================
Did I answer your question? Mark my post as a solution!
Proud to be a Super User
My Custom Visualization Projects
• Plotting Live Sound: Live Sound
• Beautiful News: Women in Parliament, Energy Mix, Shrinking Armies
• Visual Capitalist: Working Hrs
• Others: Easing Graph, Animated Calendar
MayViz Submissions
• Week 1: View
• Week 2: View
• Week 3: View
• Week 4: View
========================
amitchandak
Super User
Super User

@Anonymous , This you can use as sub query, Try that way

 

select * from abc

join ....

where date in (select distinct effective_date from in.input_table)

group by....

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

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.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

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.