Yes, but the punctuation depends upon your datasource/connectivity:
(
SELECT SUM(`QTY`)
FROM LABSTORE
WHERE LABSTORE.`ITEM_CODE` = 873
)
This would give you a sum for all records that meet your criterion. If you want it per group, the result would be different.
-LB