VbzCart/queries/qryCbx CustNames

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
< VbzCart‎ | queries
Revision as of 19:13, 9 July 2009 by Woozle (talk | contribs) (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...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

About

  • Purpose: Provides a list of customer names with associated cust_name IDs
  • Requires: cust_names
  • Used by:
  1. REDIRECT Template:l/vc/query
  • History:
    • 2009-07-09 Copied from MS Access version

SQL

<mysql>CREATE OR REPLACE VIEW qryCbx_CustNames AS SELECT

 ID,
 Name

FROM cust_names ORDER BY Name;</mysql>