Difference between revisions of "VbzCart/tables/cat title x topic"

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
(renamed from brs_* to cat_*)
(also used by...)
 
Line 1: Line 1:
 
==About==
 
==About==
* '''used by''': {{vbzcart/query|qryTitleTopic_Topics}}
+
* '''used by''': {{vbzcart/query|qryTitleTopic_Topics}}, {{vbzcart/query|qryTitleTopic_Titles}}
 
* '''history''':
 
* '''history''':
 
** '''2011-09-28''' renamed from '''brs_titles_x_topics''' to '''cat_title_x_topic'''
 
** '''2011-09-28''' renamed from '''brs_titles_x_topics''' to '''cat_title_x_topic'''

Latest revision as of 23:26, 28 September 2011

About

  • used by:
  1. REDIRECT Template:l/vc/query, qryTitleTopic_Titles
  • history:
    • 2011-09-28 renamed from brs_titles_x_topics to cat_title_x_topic

SQL

<mysql>DROP TABLE IF EXISTS `cat_title_x_topic`; CREATE TABLE `cat_title_x_topic` (

 `ID_Title` INT NOT NULL COMMENT "cat_titles.ID",
 `ID_Topic` INT NOT NULL COMMENT "cat_topic.ID",
 PRIMARY KEY(`ID_Title`,`ID_Topic`)

) ENGINE = MYISAM;</mysql>