blulagoon
06-30-2007, 02:24 PM
I am doing a very simple search:
SELECT productCode
FROM cubecart_inventory
where productCode like 'S_%'
I have designated product codes beginning with S_ for a specific purpose, but find that this query also retrieves product codes beginning with SA, SB etc etc.
Why is S_ not just retrieving the codes beginning S_, is there a way I can make this happen ?
Blu
SELECT productCode
FROM cubecart_inventory
where productCode like 'S_%'
I have designated product codes beginning with S_ for a specific purpose, but find that this query also retrieves product codes beginning with SA, SB etc etc.
Why is S_ not just retrieving the codes beginning S_, is there a way I can make this happen ?
Blu