VbzCart/queries/qryStk Bins w info
from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
About
- Returns: stk_bins with additional information (currently just stock quantities, but other fields could be added)
- Requires: stk_bins, qryStk_lines_remaining_byBin
- Used by: Special:VbzAdmin's stock bin listing page
- History:
- 2009-04-29 Created for Special:VbzAdmin
SQL
<section begin=sql /><mysql>CREATE OR REPLACE VIEW qryStk_Bins_w_info AS
SELECT sb.*, sq.QtyForSale, sq.QtyForShip, sq.QtyExisting FROM stk_bins AS sb LEFT JOIN qryStk_lines_remaining_byBin AS sq ON sb.ID=sq.ID_Bin;</mysql>
<section end=sql />
