我在嘗試從我的數據庫中檢索信息時收到以下錯誤:SQL錯誤AS AS
您的SQL語法錯誤; 檢查對應 你的MySQL服務器版本的 正確的語法使用附近的手冊「FROM catalog_product_entity CPE內加入 catalog_product_entity_varchar CPEV O」 第5行
我使用的代碼如下;
include("conn.php");
//Get all products that are configurable
$query = "SELECT cpe.entity_id entity,
cpe.sku sku,
cpe.category_ids categories,
cpev.value title,
FROM catalog_product_entity cpe inner join catalog_product_entity_varchar cpev on cpe.entity_id = cpev.entity_id
WHERE cpe.type_id = 'configurable' LIMIT 0,30";
$result = mysql_query($query) or die(mysql_error());
while($row = mysql_fetch_assoc($result))
{
echo "id :{$row['entity']} <br>" .
"sku :{$row['sku']} <br>" .
"value :{$row['title']} <br>" .
"Categories : {$row['categories']} <br>";
}
我想要做的是從magento數據庫檢索產品以顯示在非magento網站上。
哦,夥計。我準備回家了!哈。謝謝。 :d – doubleplusgood 2010-10-08 15:51:10