Hi,
How can I add an alias to an aggregate field.
Following is my code sample:
while select BrandName, count(RecId) from brandsTable
join BrandRecId, ProductName from productsTable
group by brandsTable.BrandName
where brandsTable.RecId == productsTable.BrandRecId
{
.........
}
I want to give an alias to count(RecId):
Thanks,
Tauseef.
*This post is locked for comments