好吧,我写了一个查询并得到一个错误:
字段列表中的列“product_id”不明确错误编号:1052
我需要从 2 个表中选择相同的 id 并按价格比较它们是我写的查询:
$product_sql_test1 = $this->db->query("SELECT `product_id` and 'price' FROM `" . DB_PREFIX . "product_to_category`INNER JOIN (oc_product)ON oc_product.product_id=prdoduct_to_category.product_id WHERE product_to_category.id=product.id and price >150 and `category_id`='".$product_info['related_kv4nt_id_1']."' GROUP BY `product_id` ORDER BY rand() LIMIT 0,10");
哪里可能出现错误以及如何解决?对不起,如果问题太简单了。