Strings

G

Guest

I don't understand strings/substring very good.

Sometimes this variable (MBR_GROUPNO) is entered with only 5 digits other
times 7 or 8.

How can I make this where statement capture any that start with 95440?

WHERE (((tblMember.MBR_GROUPNO)="95440"));
 
T

Tom Lake

Dan @BCBS said:
I don't understand strings/substring very good.

Sometimes this variable (MBR_GROUPNO) is entered with only 5 digits other
times 7 or 8.

How can I make this where statement capture any that start with 95440?

WHERE ([tblMember.MBR_GROUPNO] Like "95440*");

Tom Lake
 
G

Guest

I won't forget it's so simple... thanks...


Tom Lake said:
Dan @BCBS said:
I don't understand strings/substring very good.

Sometimes this variable (MBR_GROUPNO) is entered with only 5 digits other
times 7 or 8.

How can I make this where statement capture any that start with 95440?

WHERE ([tblMember.MBR_GROUPNO] Like "95440*");

Tom Lake
 

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