D
Dan @BCBS
Did not think this would be so difficult.
I just want to add a SUBSTR to capture the first 5 digits of a field.
AM I close???
SELECT
SUBSTR (MBR_GROUPNO, 1,5)
From tblMember
Or this one???
SELECT tblMember.MBR_GROUPNO
FROM tblMember
WHERE (((tblMember.MBR_GROUPNO)="need a substr"));
I just want to add a SUBSTR to capture the first 5 digits of a field.
AM I close???
SELECT
SUBSTR (MBR_GROUPNO, 1,5)
From tblMember
Or this one???
SELECT tblMember.MBR_GROUPNO
FROM tblMember
WHERE (((tblMember.MBR_GROUPNO)="need a substr"));