Forum Discussion
amaaiia
2 years agoSkilled Sharer
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') A...