I am using the microsoft visual studio 2008 query builder and I write a query like the one below:
select num Mod 60
from theTable
this query runs successfully in the microsoft access but the query builder isn't able to recognize neither the Mod operator nor %.
can you help me solve this?
Loading
Igor TizPosted Mar 30, 2010, 3:15 PM
Sam HobbsPosted Mar 29, 2010, 5:29 PM
Igor TizPosted Mar 29, 2010, 1:13 PM
Hi,
How to implement complex SQL statements? To retrieve data we using SQL statement with multiple SELECT and #temp tables. Simply copy-past all that sql code to Query Builder in VS2008 does not work.
Need some advise where to look for or general directions.
Thank you
Sam HobbsPosted Feb 14, 2010, 10:46 AM
SELECT UnitPrice, UnitPrice % 60 AS Expr1
FROM [Order Details]