So here are three relations:
Table Members
Members(member_id, name, city, state)
where member_id is the primary key
Table Borrowed
Borrowed(borrow_id, lib_id, member_id)
where borrow_id is the primary key
Table Libraries
Libraries(lib_id, lib_address, lib_city, lib_state)
where lib_id is the primary key
Both lib_id and member_id are foreign keys
So I am trying to write a query that finds all of the member_id of members that have borrowed a book at EVERY library in their city. This means that
members.city = libraries.lib_city AND members.state = libraries.lib_state
I was thinking about using relational division. For example you have a relation consisting of the member_id's and all of the lib_id where they have borrowed a book. And you divide this by a relation that consists of all of the lib_id in that member's city.
However, I am confused as to how to write this in relational algebraic terms.
In mysql/sql it is very easy but the translation to relational algebra is where I get stuck.