Hi! 
When I try to join two tables in a grid application by modifying the sql statement at the SQL section like this:
SELECT
supplier.id,
supplier.name,
supplier.address,
supplier.fax,
FROM
supplier,supplier_contact
WHERE
supplier.id=supplier_contact.supplier
I got an error like this:
How can I solve this problem?
