Difference between revisions of "VbzCart/queries/qryStk lines remaining forSale"

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
Jump to navigation Jump to search
(updated because of name-change in underlying query)
m (documentation update)
Line 1: Line 1:
 
==Details==
 
==Details==
* '''Requires''': {{vbzcart/query|v_stk_lines_remaining}}
+
* '''Requires''': {{vbzcart/query|qryStk_lines_remaining}}
 
* '''Used by''': {{vbzcart/query|qryStkItms_for_sale}}
 
* '''Used by''': {{vbzcart/query|qryStkItms_for_sale}}
 
* '''Note''': Eventually rename as "qryStkLines_for_sale"
 
* '''Note''': Eventually rename as "qryStkLines_for_sale"

Revision as of 23:03, 29 November 2009

Details

  • Requires:
  1. REDIRECT Template:l/vc/query
  • Used by: qryStkItms_for_sale
  • Note: Eventually rename as "qryStkLines_for_sale"
  • History:
    • 2009-11-29 Updated to reflect name change of source query

SQL

<mysql>CREATE OR REPLACE VIEW qryStk_lines_remaining_forSale AS

 SELECT *
 FROM qryStk_lines_remaining
 WHERE QtyForSale>0;</mysql>