Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带有主 ID 和用户 ID 的表。每个用户 ID 都有一组自己唯一的主 ID,但多个用户 ID 可以有相同的主 ID。无论如何,无需执行 2 次查询就可以为特定用户增加主 ID?
如果你的意思是这样的:
User ID Main ID 1 1 1 2 1 3 2 1 2 2 2 3
然后,您将需要创建一个 INSERT 触发器,为该用户找到下一个 MainID 并存储它。