Hi,
I am trying to figure out how to do a select on a group of part numbers with the following format.
6JH02XDVAD
6JH23XDVAD
I need to find the parts where the fifth character is ODD or EVEN.
The fourth character is random.
I can get all the parts with this select:
SELECT * FROM PARTS WHERE NAME LIKE '6JH%'
Any help would be greatly appreciated. Thank you.
I am trying to figure out how to do a select on a group of part numbers with the following format.
6JH02XDVAD
6JH23XDVAD
I need to find the parts where the fifth character is ODD or EVEN.
The fourth character is random.
I can get all the parts with this select:
SELECT * FROM PARTS WHERE NAME LIKE '6JH%'
Any help would be greatly appreciated. Thank you.