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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

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
Super User
Super User

@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: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs
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
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors