I am using opencart, just got this error when trying to view customers in admin. I know nothing about SQL but I think it is telling me that I need to put cg.name somewhere.
Full error:
Notice: Error: Unknown column 'cg.name' in 'field list'
Error No: 1054
SELECT *,
CONCAT(c.firstname, ' ', c.lastname) AS name,
cg.name AS customer_group
FROM oc_customer c
LEFT JOIN oc_customer_group cg
ON (c.customer_group_id = cg.customer_group_id)
ORDER BY name ASC
LIMIT 0,100
in /home4/pawpostc/public_html/system/database/mysql.php on line 49
oc_customer_groupreally containsname? – JW 웃 Oct 26 '12 at 2:38namefield inoc_customer_group. Try runningdesc oc_customer_group;in your mysql console to see the field you are looking for. – ace Oct 26 '12 at 2:38oc_customer_group? I believe you would like to use one of them. just replace name incg.namewith that column name. Also make sure your use a right column inorder by clause. – Yogendra Singh Oct 26 '12 at 2:48