Untitled

Anonymous
mysql
10/01/2024 5:01 PM
364 B
24
Indexable
SELECT 
    count(serialnumber) serial,
    bin,
    location,
    previousbin,
    previouslocation
FROM
    inventoryitem
WHERE
    location = 'qc pending' and bin = 'bDamagedInventory'
        AND qtyonhand = 1
        group by previousbin
ORDER BY previouslocation ASC
Editor is loading...
Leave a Comment