Stack Exchange network consists of 183 Q&A communities including Stack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.
Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work.
Bring the best of human thought and AI automation together at your work. Learn more
Stack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
INNER JOIN mgnt_sales_order AS so ON main_table.entity_id = so.entity_id WHERE (custom_attribute LIKE '%testing the filter%')
mgnt_sales_order
so
custom_attribute
Integrity constraint violation: 1052 Column 'custom_attribute' in where clause is ambiguous
INNER JOIN mgnt_sales_order AS so ON main_table.entity_id = so.entity_id WHERE (custom_attribute LIKE '%testing the filter%') Integrity constraint violation: 1052 Column 'custom_attribute' in where clause is ambiguous
Goal: Filter the orders grid by a custom attribute of the order.
Unfortunally the solution with the plugin above creates other problems in the order view.. that's why I'm looking for other solutions
Goal: Filter the orders grid by a custom attribute of the order