¿Qué está causando SQLState [42000]: error de sintaxis o violación de acceso: 1064 al intentar agrupar tablas?

magento.stackexchange https://magento.stackexchange.com/questions/11131

Pregunta

He estado tratando de averiguar qué está causando la excepción al intentar crear una unión para mis colecciones y agruparlas con la Tabla Main_Table.

Aquí está el código de mi colección.php

<?php

class Companyname_CheckoutComments_Model_Resource_Comment_Collection extends Mage_Core_Model_Resource_Db_Collection_Abstract{


    protected function _construct() {

        $this->_init('checkoutcomments/comment');
    }
    public function addCustomerFilter($customer){

        $select = $this->getSelect();
        if ($customer->getId()){
            $select->where('order.customer_id?', $customer->getId());
        } else {
            //Force empty result set for not logged in customers
            $select->where('1=0');
        }

        $select->join(array('order' => $this->getTable('sales/order')),
                'order.entity_id = main_table.order_id',
                array('status', 'created_at'));

        $select->join(array('order_item' => $this->getTable('sales/order_item')),
                'order_item.order_id = main_table.order_id
                AND order_item.parent_item_id IS NULL ',
                array());

        /** Mage_Core_Model_Resource_Helper_Mysql4 */
        Mage::getResourceHelper('core')->addGroupConcatColumn($select, 'product_names', 'order_item.name', ', ' );
        $select->group('main_table.comment_id');
        return $this;
    }
}

La línea que me está dando dolor es:

$select->group('main_table.comment_id');

Como arroja un error que parece que no puedo arreglar

QLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''2') GROUP BY `main_table`.`comment_id`' at line 4

SELECT `main_table`.*, `order`.`status`, `order`.`created_at`, GROUP_CONCAT(order_item.name SEPARATOR ', ') AS `product_names` FROM `checkout_comments` AS `main_table` INNER JOIN `sales_flat_order` AS `order` ON order.entity_id = main_table.order_id INNER JOIN `sales_flat_order_item` AS `order_item` ON order_item.order_id = main_table.order_id AND order_item.parent_item_id IS NULL WHERE (order.customer_id'2') GROUP BY `main_table`.`comment_id`

Si alguien sabe la sintaxis correcta para usar, ¿podría aconsejar amablemente o si hay algún error en mi código que me he perdido?

¡Gracias de antemano chicos!

¿Fue útil?

Solución

El problema era de hecho la línea 4

$select->where('order.customer_id?', $customer->getId());

Tiene que ser

$select->where('order.customer_id=?', $customer->getId());
Licenciado bajo: CC-BY-SA con atribución
No afiliado a magento.stackexchange
scroll top