Please SQL is not working in Access

K

Ken Snell \(MVP\)

If you're running this query in ACCESS, it should be this:

SELECT CStr(remark) as remark1
from remarktable
 
J

John Spencer

Or perhaps the user want the first 10 characters in the Remark field.

SELECT LEFT(Remark,10) as Remark1
FROM RemarkTable


'====================================================
John Spencer
Access MVP 2002-2005, 2007-2008
The Hilltop Institute
University of Maryland Baltimore County
'====================================================
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top