VbzCart/queries/qryTitles ItTyps ItTyps

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:20, 24 January 2011 by Woozle (talk | contribs) (corrections)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

About

  • Returns: list of available titles for each item type
    • This query provides some of the same information as _title_ittyps, but (a) broken down by Item and (b) using live data.
  • Requires:
  1. REDIRECT Template:l/vc/query,
  2. REDIRECT Template:l/vc/table
  • Used by: can be used by catalog pages in place of cat_items to provide realtime data (instead of relying on some cached fields in cat_items), but this is very slow; currently no known uses.
  • History:
    • 2009-04-13 had to recreate because qryTitles_ItTyps_grpItems changed
    • 2011-01-24 For consistency with _title_ittyps:
      • ItTyp_SortItTypSort
      • ItTyp_SngItTypNameSng
      • ItTyp_PlrItTypNamePlr

SQL

<mysql>CREATE OR REPLACE VIEW qryTitles_ItTyps_ItTyps AS SELECT

 i.*,
 it.Sort                       AS ItTypSort,
 it.NameSng                    AS ItTypNameSng,
 IFNULL(it.NamePlr,it.NameSng) AS ItTypNamePlr

FROM qryTitles_ItTyps_grpItems AS i LEFT JOIN cat_ittyps AS it ON i.ID_ItTyp=it.ID;</mysql>