This is the first time I have come across a situation like this. I have an id field with 3 different values. I have been asked to extract each of them for later use, but I don't know how to create query.
table
id - TJ11|X033|27636
TJ11 is a sku
X033 is a store
27636 is a car id
I try with
SELECT table.id FROM table
WHERE table.id like 'TJ11'
I need each value to be able to display it in the JSP.