I have the following code here:
SELECT productcode, Brand, product, size
from outerbarcodes i
where productcode = '' or productcode is null or
brand = '' or brand is null or
product = '' or product is null or
size = '' or size is null;
Id like to add a condition not to include values that start with 'PK'
inside column productcode. How would the code be amended?
Thanks in advance