Difference between revisions of "VbzCart/queries"
< VbzCart
Jump to navigation
Jump to search
(→Catalog Sources: 3 more queries that don't work anymore) |
(→new queries: many more queries no longer in db) |
||
(One intermediate revision by the same user not shown) | |||
Line 102: | Line 102: | ||
* '''filtered by status''': | * '''filtered by status''': | ||
** [[/qryRstks_active]]: not terminated = !(closed, orphaned or killed - see {{l/vc/term|restock/status}}) | ** [[/qryRstks_active]]: not terminated = !(closed, orphaned or killed - see {{l/vc/term|restock/status}}) | ||
− | |||
− | |||
− | |||
*** [[/qryRstks_unsent]]: created but not ordered yet | *** [[/qryRstks_unsent]]: created but not ordered yet | ||
**** [[/qryRstkItms_unsent]] | **** [[/qryRstkItms_unsent]] | ||
Line 120: | Line 117: | ||
** [[/qryStk_lines_remaining_forSale]] | ** [[/qryStk_lines_remaining_forSale]] | ||
*** [[/qryStkItms_for_sale]] | *** [[/qryStkItms_for_sale]] | ||
− | + | ||
− | + | * [[/qryStk_items_remaining]] | |
− | + | * [[/qryStk_byItem_byBin]] | |
− | |||
* [[/qryStk_lines_Title_info]] | * [[/qryStk_lines_Title_info]] | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
====old queries==== | ====old queries==== |
Latest revision as of 23:12, 3 March 2016
Overview
What MS Access calls "queries" are called "views" in MySQL, i.e. they pull data from existing tables and are themselves usable as data sources in much the same way that tables are (and in which result sets from functions are not).
Some common prefixes:
- qryCbx_: queries used for filling comboboxes. The unique ID will always be the first field, and the text to display will always be the second field; additional fields may be provided for use in further qryCbx_ queries which show a subset of the results.
- qryCat_: queries which build catalog numbers or information by joining multiple tables. (In Access, the convention was qryCatNum_.)
by category
Inactive
- /deprecated: queries we're trying to get rid of, once we're sure nothing uses them
- /discarded: queries apparently no longer in use
Catalog
- /qryCat_Depts
- Title-centric:
- /qryTitles_Item_info
- /qryTitles_ItTyps_grpItems
- /qryTitles_ItTyps_ItTyps
- /qryTitles_ItTyps_Titles
- /qryTitles_Imageless - titles with no active images
- /qryCat_Titles
- /qryCat_Titles_Item_stats -- item/stock statistics
- /qryCat_Titles_Item_count -- simpler query for maintenance
- /qryCat_Titles_web
- /qryCbx_Titles
- Item-centric:
- /qryCat_Items_Stock: cat_items with stock info
- ItTyp-centric:
- Image-centric:
- /qryImgs_byTitle: Image info by Title
- /qryCat_pages: maps http path info to catalog entities
Catalog Items
- /qryCbx_Items_data
- /qryCbx_Items
- /qryCbx_Items_active
- /qryCbx_Items_for_sale
- /qryCbx_Items_opt: abbreviated version for contexts where Title is already known
- /qryItems_prices: what uses this?
Catalog Sources
- /qryCtg_Sources_active
- /qryCtg_Items_updates
- /qryCtg_Items_updates_joinable
- /qryCtg_Items_active
/qryCtg_build_sub/qryCtg_build- building process:
Catalog Topics
- titles x topics:
- /qryTitleTopic_Titles: more title information
- /qryTitleTopic_Topics: more topic information
- /qryTitleTopic_Title_avail: title availability information
Ordering
Carts
Customers
Orders
- /qryCbx_Orders
- /qryOrderLines_notPkgd
- /qryOrders_Active
- /qryOrderLines_Active
- /qtyOrderItems_Active
- /qry_PkgItem_qtys_byOrder
- /qryOrdItms_Pkg_qtys
- /qryOrdItms_open
- /qryItms_open
- /qryItms_to_restock_union
- /qryItms_to_restock
Packages
- /qryPkgLines_byOrdLine_andItem
- /qryOrdLines_PkgdQtys
- /qryOrdLines_open
- /qryOrders_Pulled
- /qryPkgs_Pull_status
- for reports:
Restocks
- all restock requests:
- filtered by status:
- /qryRstks_active: not terminated = !(closed, orphaned or killed - see restock/status)
- /qryRstks_unsent: created but not ordered yet
- /qryRstks_inactive: all the rest
- /qryRstks_active: not terminated = !(closed, orphaned or killed - see restock/status)
Shipping
Stock
new queries
old queries
This was the first batch of queries I created, before I had decided to go with the qry prefix as in Access.
Caching
Caching should only be used for catalog display.