Category: Database

Woocommerce -> MySQL -> vVariationMetaData vProductVariation

20181220 Product variations (attribute = length only currently) alter view vVariationMetaData as — 20181220 LSR — Product Variations meta data — Note is selected metadata only (not quite all) select po.post_parent, pm.post_id ,max(case when meta_key = ‘attribute_length’ then meta_value else null end) as pvm_attribute_length ,max(case when meta_key = ‘_sku’ then meta_value else null end) as […]

MFM Purchases

Initial versions 20181117 — Keep track of purchases ‘ Snapshot in case ever lost CREATE TABLE `m4m_wpProducts` (`wp_post_id` INT ,`wp_post_title` TEXT ,`wp_sku` TEXT , KEY `iPostID` (`wp_post_id`) USING BTREE ); insert into m4m_wpProducts (`wp_post_id`, `wp_post_title`, `wp_sku`) select ID, post_title, pm_sku from vProductMetaData; Purchases CREATE TABLE `m4m_purchases` (id INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,`wp_post_id` INT […]

Woocommerce – Editing Orders

Paypal orders are sorta locked xx — wp1_postmeta update wp1_postmeta set meta_value = ‘0.00’ where post_id = 3387 and meta_key = ‘_order_shipping’; update wp1_postmeta set meta_value = ‘0.00’ where post_id = 3387 and meta_key = ‘_order_shipping_tax’; update wp1_postmeta set meta_value = ‘10.36’ where post_id = 3387 and meta_key = ‘_order_total’; — wp1_woocommerce_order_itemmeta update wp1_woocommerce_order_itemmeta oim […]

Woocommerce -> MySql -> vTaxonomyChained vTaxonomyPaths vProductCatsSummary

Product categories have parents… Products can be in more than 1 category xx create view vProductCatsSummary as select ID ,count(*) as cat_cnt ,min(tt.term_taxonomy_id) as cat_min ,max(tt.term_taxonomy_id) as cat_max ,( select group_concat( tex.name separator ‘ | ‘ ) from wp1_term_relationships trx JOIN wp1_term_taxonomy ttx ON trx.term_taxonomy_id = ttx.term_taxonomy_id JOIN wp1_terms tex ON ttx.term_id = tex.term_id where […]