Untitled

Anonymous
mysql
04/01/2023 4:39 PM
424 B
20
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...