Consider the following three relations
Employee (eid, eName), Comp(cid, cName), Own(eid, cid). Which of the following relational algebra expression return the set of eids who own all brands:
1.π_eid ( π_eid,cid (Own) / π_cid (Comp) ) ✓ Correct
2.π_eid ( π_eid (Own) × π_cid (Comp) )
3.π_eid ( π_eid,cid (Own) × π_cid (Comp) )
4.π_eid ( π_eid (Own) × (π_cid,cName (Own) / π_cid (Comp)) )