Untitled

 avatar
unknown
mysql
a year ago
288 B
11
Indexable
SELECT 
    CONCAT('s', serialnumber) serial,
    product,
    size,
    bin,
    location,
    previousbin,
    previouslocation,
    lastscandate
FROM
    inventoryitem
WHERE
    product LIKE 'bot_-%' AND qtyonhand = 1
        AND location like '7-E30__-%'
        order by location asc
Editor is loading...
Leave a Comment