1.1.1

Table Of Contents
So for the product entity group, table Products is partitioned by ProductID, and the Suppliers and Categories
tables are replicated to all of the members where Products is partitioned.
Applications can now join Products, Suppliers and categories. For example:
select * from Products p , Suppliers s, Categories c
where c.categoryID = p.categoryID and p.supplierID = s.supplierID
and p.productID IN ('someProductKey1', ' someProductKey2', '
someProductKey3');
In the above query, SQLFire prunes the query execution to only those partitions that host 'someProductKey1', '
someProductKey2', and ' someProductKey3.'
vFabric SQLFire User's Guide56
Managing Your Data in vFabric SQLFire