Difference between revisions of "VbzCart/queries/qryTitleTopic Titles"

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
Jump to navigation Jump to search
(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...")
(No difference)

Revision as of 21:08, 24 January 2011

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>