VbzCart/docs/queries/qryRstks unsent: Difference between revisions
Jump to navigation
Jump to search
imported>Woozle (new query) |
m (Woozle moved page VbzCart/VbzCart/queries/qryRstks unsent to VbzCart/docs/queries/qryRstks unsent without leaving a redirect: part 3/5) |
||
(One intermediate revision by one other user not shown) | |||
Line 2: | Line 2: | ||
* '''Returns''': Restocks created and not terminated but not yet ordered from supplier | * '''Returns''': Restocks created and not terminated but not yet ordered from supplier | ||
* '''Requires''': {{vbzcart/query|qryRstks_active}} | * '''Requires''': {{vbzcart/query|qryRstks_active}} | ||
* '''Used by''': | |||
* '''History''': | * '''History''': | ||
** '''2008-12-04''' Created for new restock process | ** '''2008-12-04''' Created for new restock process | ||
==SQL== | ==SQL== | ||
<section begin=sql /><mysql>CREATE OR REPLACE VIEW qryRstks_unsent AS | <section begin=sql /><mysql>CREATE OR REPLACE VIEW qryRstks_unsent AS |
Latest revision as of 01:56, 25 February 2024
About
- Returns: Restocks created and not terminated but not yet ordered from supplier
- Requires: Template:Vbzcart/query
- Used by:
- History:
- 2008-12-04 Created for new restock process
SQL
<section begin=sql /><mysql>CREATE OR REPLACE VIEW qryRstks_unsent AS SELECT
*
FROM
qryRstks_active
WHERE WhenOrdered IS NULL;</mysql> <section end=sql />