Problem with query builder

I am evaluating fr 3.15 and I just cannot believe this is happening with the query builder :

I am trying to build a simple query from the DBDEMOS alias

1 - I link "Orders.db" and "Items.db" using OrderNo as the linking field,
the query builder produces the following sql statement which is correct

SELECT o.OrderNo, i.PartNo
FROM
orders.db o
INNER JOIN items.DB i ON (o.OrderNo=i.OrderNo)

2 - But when I link "Items.db" and "Parts.db" using PartNo as the linking field,
the query builder produces the following sql statement which is not correct
(Note: I have 3 tables now)


SELECT o.OrderNo, i.PartNo, p.Description
FROM
orders.db o
INNER JOIN items.DB i ON (o.OrderNo=i.OrderNo) AND (o.PartNo=i.PartNo) ,
parts.db p

;)

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.