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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. 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
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: 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
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

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.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

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