My field contains very structured data, two characters - three characters.
Example:
13-251
40-251
40-245
66-234
51-233
I want to quarry my table based only on the first two characters. usually I would use several values. In this case, I use two 66 & 51.
13 and 40 and 66
I tried The following with no luck, 66 & 51:
SELECT permit.UPDATE, permit.SEQNO, permit.SEAL, permit.SC
FROM permit
WHERE (((permit.SC)="66")) And (((permit.SC)="51"));
Bob
Example:
13-251
40-251
40-245
66-234
51-233
I want to quarry my table based only on the first two characters. usually I would use several values. In this case, I use two 66 & 51.
13 and 40 and 66
I tried The following with no luck, 66 & 51:
SELECT permit.UPDATE, permit.SEQNO, permit.SEAL, permit.SC
FROM permit
WHERE (((permit.SC)="66")) And (((permit.SC)="51"));
Bob