osCommerce mysql 導出到 Excel (osCommerce mysql export to Excel)


問題描述

osCommerce mysql 導出到 Excel (osCommerce mysql export to Excel)

我需要將 osCommerce 產品數據庫導出到 Excel。目前有幾個表:

‑ Products (list with all the products)
‑ Options (labels of the different options, e.g. size, color, etc)
‑ Options_Products (list will all the options for a given product, organised by product_id, option_id and value (e.g. red, 32, etc.))

我必須在一行中導出每個產品,每個選項(例如顏色)有一列,所有值(逗號分隔)。如果某些選項不適用於某些產品,則該字段應為空或 null。

product_id
product_name
...
color (red, blue)
size (null)
some other option (23, 24, 24)
another option (null)

我很難創建這個 MySQL 查詢,我將不勝感激。


參考解法

方法 1:

I'm pretty sure you will not be able to do this by a single query or your query will have some sub‑queries.

I faced same problem and had to create a separate class. First it got an array (list) of products, and than, iterating products list, requested features list, including features names and values, for every product.

In some cases it's easier to make several methods in a class and get data "step‑by‑step" instead of trying to make a single complicated query.

Keep it simple, and good luck.

(by Borislazy.lizard)

參考文件

  1. osCommerce mysql export to Excel (CC BY‑SA 2.5/3.0/4.0)

#oscommerce #MySQL






相關問題

重寫問題 (Rewrite problems)

用於將 OScommerce 網站轉換為 facebook 商店的插件 (plugin for converting OScommerce site to facebook store)

Prestashop 在註冊表單中添加額外字段 (Prestashop Add extra fields to registration form)

無法訪問 oscommerce 中的前端 (Can't access Front end in oscommerce)

如何將重定向添加到 oscommerce 產品頁面 (how add redirect to oscommerce product page)

域和子域之間的不同會話 (Different session between domain and subdomain)

使用會話將整個站點中的循環重定向到移動站點 (Redirect loop in full site to mobile site using session)

osCommerce mysql 導出到 Excel (osCommerce mysql export to Excel)

在 OSCommerce 中更改“主頁”徽標的 URL 目標 (Changing URL destination for "home" logo in OSCommerce)

我怎麼知道 osCommerce 的版本是什麼? (How can i know what is the release of osCommerce?)

301 重定向舊 osCommerce 鏈接的最佳方式 (Best way to 301 redirect old osCommerce links)

Oscommerce語言安裝問題 (Oscommerce language install problem)







留言討論