VbzCart/docs/queries/qryCbx CustNames: Difference between revisions
Jump to navigation
Jump to search
imported>Woozle (New page: ==About== * '''Purpose''': Provides a list of customer names with associated cust_name IDs * '''Requires''': {{vbzcart|table|cust_names}} * '''Used by''': {{vbzcart/query|qryPkgs_Pull_stat...) |
m (Woozle moved page VbzCart/VbzCart/queries/qryCbx CustNames to VbzCart/docs/queries/qryCbx CustNames without leaving a redirect: part 2) |
(No difference)
|
Latest revision as of 01:55, 25 February 2024
About
- Purpose: Provides a list of customer names with associated cust_name IDs
- Requires: Template:Vbzcart
- Used by: Template:Vbzcart/query
- History:
- 2009-07-09 Copied from MS Access version
SQL
<section begin=sql /><mysql>CREATE OR REPLACE VIEW qryCbx_CustNames AS SELECT
ID, Name
FROM cust_names ORDER BY Name;</mysql> <section end=sql />