View Full Version : converting an oracle query to access


markyb
09-26-2001, 01:43 AM
I currently have a query that i run against an oracle DB that works fine, i would like to rewrite the query so i can use it against an access table.

However, the query currently uses some things that access doesnt support, such as

SUBSTR
RTRIM
LENGTH

Anyone know the access alternatives??

Thanks

fmm
09-26-2001, 04:54 AM
for LENGTH use len()

for SUBSTR use mid()

for RTRIM use trim()