I have the following Access 2003 query in the row source of a list box on my form:
select Cast(avg(cast(review_quality_score As decimal(18,2))) As Decimal(18,2)) from mwo.dbo.mwo
This query works perfectly in SQL Query analyzer but when I transfer it to Access I get a message error: "syntax error (missing operator). Can anyone see what I am doing wrong ? Thanks.
select Cast(avg(cast(review_quality_score As decimal(18,2))) As Decimal(18,2)) from mwo.dbo.mwo
This query works perfectly in SQL Query analyzer but when I transfer it to Access I get a message error: "syntax error (missing operator). Can anyone see what I am doing wrong ? Thanks.