MS SQL Error
I am getting a mssql error, below is the sql statement:
SELECT Products.Brief, (param 1) AS Cat, Max(IIf([Ext5] = 1 and [CFM] Not Like '%HD%',[Image],'00000')) AS FirstOfImage,
Count(Products.Seq) AS Qty
FROM Products WHERE ( ((Price)>0) AND ((Products.Cfm) Like '%Bath%') )
GROUP BY Products.Brief ORDER BY Products.Brief, Min(Products.Title)
The error is am getting:
| Error Occurred While Processing Request | |||
| |||
Any help with my query would be great.
Anthony