Untitled

 avatar
unknown
mysql
2 years ago
224 B
6
Indexable
SELECT 
    CONCAT('s', serialnumber) serial,
    product,
    size,
    bin,
    location
FROM
    inventoryitem
WHERE
    product LIKE 'rayb%' AND qtyonhand = 1
        AND sellAsDefective = 1
        order by location asc
Editor is loading...