Untitled

 avatar
unknown
plain_text
a year ago
249 B
10
Indexable
SELECT 
    CONCAT('s', serialnumber) serial,
    product,
    size,
    bin,
    location,
    lastscandate
FROM
    inventoryitem
WHERE
    bin LIKE 'b28520%' AND qtyonhand = 1
        AND location LIKE '7-%'
        group by location asc
        
Editor is loading...
Leave a Comment