I need to search a Last_name field that contain suffix's. The suffix always follows that Last_name with a space in between.
Examples:
Last_name
smith II
smith IV
smith jr
smith sr
I've tried:
select Last_name
from TABLE1
where Last_name like '% [A-Za-z]'
Any assistance would be appreciated.
Thank you.
Examples:
Last_name
smith II
smith IV
smith jr
smith sr
I've tried:
select Last_name
from TABLE1
where Last_name like '% [A-Za-z]'
Any assistance would be appreciated.
Thank you.