Please SQL is not working in Access

  • Thread starter Thread starter pol
  • Start date Start date
If you're running this query in ACCESS, it should be this:

SELECT CStr(remark) as remark1
from remarktable
 
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
'====================================================
 
Back
Top