Suppose you have two tables:

Purchase(cardID,itemID)

MembershipCard(cardID,clientID,companyName)

How can I get all cardID's which were not used in a purchase using relational algebra?

It seems like division to me but I'm not sure

有帮助吗?

解决方案

You have to take all MembershipCards and remove all the ones that are in Purchase:

πcardID(MembershipCard) - πcardID(Purchase)

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top