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 21:08, 24 January 2011 by Woozle (talk | contribs) (Created page with "==About== * '''Returns''': titles x topics with complete Title data * '''Used by''': Topic pages * '''History''': ** '''2011-01-24''' created for title listing on Topic pages ==S...")
(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
  • History:
    • 2011-01-24 created for title listing on Topic pages

SQL

<mysql>CREATE OR REPLACE VIEW qryTitleTopic_Titles AS

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