I have a database for entering service orders. I need to make sure that a Service Company isn’t assigned the same "Place" more than once. Places can have the same name as long as they are in different countries, or are assigned to different companies but a service company should never have a duplicate Place names.
What is the best way to accomplish this based on the table structure below?
<b>tblPlaces</b>
PlaceID (primary key)
SVCID (foreign key
PlaceName
PlaceCountry
<b>tblServiceCompany</b>
SVCID (primary key)
SVCName
What is the best way to accomplish this based on the table structure below?
<b>tblPlaces</b>
PlaceID (primary key)
SVCID (foreign key
PlaceName
PlaceCountry
<b>tblServiceCompany</b>
SVCID (primary key)
SVCName