Charactor in a string

A

alecgreen

Hi

I am looking for a certain charactor (P) at the end of a string, but
the string length may vary, for example 1P, 123P or 12345P

Any ideas please

Thanks

Alec
 
K

Ken Snell

Use Like operator to do a wildcard search:

SELECT *
FROM TableName
WHERE FieldName Like "*P";
 

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