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
5answers
726 views
T-SQL Database Relationships PK FK Same Name?
Scenario
I have 3 database tables. One is for Images and the other two are People & Places. Since each person can have many images and each place can have many images, I want to have a ONE TO ...