I have a query for an inventory catalog that looks like this.
select RIGHT(C.barcode, 12), C.description, C.size, (select sum(stock_count) from count_update where barcode = RIGHT(C.barcode, 12)) TotalCount, (select stock_count from count_update where barcode = RIGHT(C.barcode,12))-(select...
I am having a hard time creating a simple query.
I have two tables. "last_count" which has the columns "barcode" "location", and "count"
and "slow" which has columns "barcode" and "description".
The basic idea, is that "last_count" contains an inventory count of my entire catalog with seperate...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.