View Single Post
Join Date: May 2007
Posts: 11
Reputation: katerinaaa is an unknown quantity at this point 
Solved Threads: 0
katerinaaa katerinaaa is offline Offline
Newbie Poster

Re: exercise in DIstributed Database Systems

 
0
  #3
Jun 27th, 2007
BOOK1=select * 
from BOOKS
where $price<=20;

BOOK2=select *
from BOOKS
where ($price >=20.01)AND($price<=50);

BOOK3=...
BOOK4=...

EAST=select *
from BOOKSTORE
where Zip<=35000;

MIDDLE=...
WEST=....

But then I don't understand what I have to do

"Assuming the query was submitted in EAST, what remote subqueries does it generate?"
Reply With Quote