Tagged Questions
1
vote
2answers
116 views
Create T-SQL Constraint to prevent x amount of duplicate records in table?
In table A I have 2 columns:
ID (int, PK)
MaxUsers (int)
In table B I have 2 columns:
ItemID (int)
UserID (int)
The number of records in table A with matching ItemID's cannot exceed the MaxUsers ...
0
votes
8answers
153 views
Database Design: Storing the primary key as a separate field in the same table
I have a table that must reference another record, but of the same table. Here's an example:
Customer
********
ID
ManagerID (the ID of another customer)
...
I have a bad feeling about doing this. ...