VbzCart/queries/qryTitleTopic Topics

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:13, 24 January 2011 by Woozle (talk | contribs) (Created page with "==About== * '''Returns''': titles x topics with complete Topic data * '''Used by''': Title pages * '''Requires''': {{vbzcart|table|brs_titles_x_topics}}, {{vbzcart|table|brs_topi...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

About

  • Returns: titles x topics with complete Topic data
  • Used by: Title pages
  • Requires: brs_titles_x_topics, brs_topics
  • History:
    • 2011-01-24 created for Topic listing on Title pages

SQL

<mysql>CREATE OR REPLACE VIEW qryTitleTopic_Topics AS

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