VbzCart/queries/qryTitleTopic Titles

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 23:25, 28 September 2011 by Woozle (talk | contribs) (source table renamed)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

About

  • Returns: titles x topics with complete Title data
  • Used by: Topic pages
  • Requires: cat_title_x_topic, cat_titles
  • History:
    • 2011-01-24 created for Title listing on Topic pages
    • 2011-09-28 source table renamed (brs_titles_x_topics -> cat_title_x_topic)

SQL

<mysql>CREATE OR REPLACE VIEW qryTitleTopic_Titles AS

 SELECT tt.ID_Topic, t.*
 FROM cat_title_x_topic AS tt
 LEFT JOIN cat_titles AS t
 ON tt.ID_Title=t.ID;</mysql>