
Partner - Contributor III
2024-06-26
08:15 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
why is this an invalid expression? (Concat Distinct, group by, order by)
Why is the first load an invalid expression? and how do I fix it?
RemoveDuplicate:
load
Distinct InterDupeSequence as NewSequence,
Customer_Code,
CrossSales_Date,
CrossSales_Key,
CrossSales_Key_v2,
Cross_Cate;
load
concat(distinct Category, ',', CatOrder) as InterDupeSequence,
Customer_Code,
CrossSales_Date,
CrossSales_Key,
CrossSales_Key_v2,
Cross_Cate
Resident StanLines2
group by LineNum
order by LineNum,CatOrder;
drop table StanLines2;
1 Solution
Accepted Solutions

Partner Ambassador/MVP
2024-06-26
08:57 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @LiquidSword
For starters your load using aggregation function (not the preceeding) is wrong as group by needs to contain all fields which aren't using grouping function so it should be:
Load
concat(distinct Category, ',', CatOrder) as InterDupeSequence,
Customer_Code,
CrossSales_Date,
CrossSales_Key,
CrossSales_Key_v2,
Cross_Cate
Resident StanLines2
group by
Customer_Code,
CrossSales_Date,
CrossSales_Key,
CrossSales_Key_v2,
Cross_Cate
order by
LineNum,CatOrde
;
cheers Lech, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful to the problem.
401 Views
1 Reply

Partner Ambassador/MVP
2024-06-26
08:57 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @LiquidSword
For starters your load using aggregation function (not the preceeding) is wrong as group by needs to contain all fields which aren't using grouping function so it should be:
Load
concat(distinct Category, ',', CatOrder) as InterDupeSequence,
Customer_Code,
CrossSales_Date,
CrossSales_Key,
CrossSales_Key_v2,
Cross_Cate
Resident StanLines2
group by
Customer_Code,
CrossSales_Date,
CrossSales_Key,
CrossSales_Key_v2,
Cross_Cate
order by
LineNum,CatOrde
;
cheers Lech, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful to the problem.
402 Views
