Untitled

 avatar
unknown
mysql
2 years ago
316 B
7
Indexable
SELECT 
    concat('s', serialnumber) serials,
    product,
    size,
    location,
    previousbin,
    previouslocation,
    lastscandate
FROM
    inventoryitem
WHERE
    location = 'cant find:pending'
    AND previouslocation like '7-%'
        AND qtyonhand = 1
        order by previouslocation, previousbin asc
Editor is loading...