VbzCart/queries/qryCtg Items updates joinable

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 19:30, 30 November 2008 by Woozle (talk | contribs) (moved from single-page listing)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Details

SQL

<mysql>CREATE OR REPLACE VIEW qryCtg_Items_updates_joinable AS

 SELECT
   CONCAT_WS('-',u.ID_Title,u.CatSfx) AS IDS_Item,
   CONCAT_WS('-',t.CatNum,u.CatSfx) AS CatNum,
   u.*
 FROM qryCtg_Items_updates AS u LEFT JOIN qryCat_Titles AS t ON u.ID_Title=t.ID;</mysql>