G
Guest
SELECT COLUMN_1, SUBSTR(COLUMN_1, 1, 3)
FROM TABLE_NAME;
COLUMN_1 SUBSTR(COLUMN_1, 1, 3)
======= =================
ABCDEF ABC
I'm trying to retrieve just the first 3 characters of a string variable
and ACCESS doesn't like the 'substr' function...
FROM TABLE_NAME;
COLUMN_1 SUBSTR(COLUMN_1, 1, 3)
======= =================
ABCDEF ABC
I'm trying to retrieve just the first 3 characters of a string variable
and ACCESS doesn't like the 'substr' function...