VbzCart/queries/qrySub Carts info data

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
Revision as of 01:05, 9 September 2009 by Woozle (talk | contribs) (Created page with '==Details== * '''Requires''': {{vbzcart/table|shop_cart_data}} * '''History''': ** '''2009-09-08''' Created for Special:VbzAdmin ==SQL== <section begin=sql /><mysql>CREATE OR REP…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Details

  • Requires: shop_cart_data
  • History:
    • 2009-09-08 Created for Special:VbzAdmin

SQL

<section begin=sql /><mysql>CREATE OR REPLACE VIEW qrySub_Carts_info_data AS SELECT

 ID_Cart, COUNT(ID_Cart) AS DataCount

FROM shop_cart_data GROUP BY ID_Cart;</mysql> <section end=sql />