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

Join us at FabCon Vienna from September 15-18, 2025, for the ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM. Get registered

Reply
amaaiia
Super User
Super User

T-SQL do a SELECT from SELECT

I have an A table in a warehouse. I want to query the table as follows:

 

select STRING_AGG(field1, ',') from (select distinct field1 from [lakehouse].[schema].[table] where field2='value2')
 
And I get this error message: 
amaaiia_2-1710261474523.png

 


Is it possible to query a subquery? How can I get distinct values and then get them as a string separated by ','?

 

1 ACCEPTED SOLUTION
AndyDDC
Super User
Super User

Hi @amaaiia @can you try putting your select in a CTE:


;with distinctdata 

as

(

select distinct field1 from [lakehouse].[schema].[table] where field2='value2'

)

select STRING_AGG(field1, ',') from distinctdata

View solution in original post

1 REPLY 1
AndyDDC
Super User
Super User

Hi @amaaiia @can you try putting your select in a CTE:


;with distinctdata 

as

(

select distinct field1 from [lakehouse].[schema].[table] where field2='value2'

)

select STRING_AGG(field1, ',') from distinctdata

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

May FBC25 Carousel

Fabric Monthly Update - May 2025

Check out the May 2025 Fabric update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.