我有带有复合主键的表。我可以将其中之一设为自动生成吗?
场景:
我有一个teacher table
,其中包含字段techerId,名称,性别,角色,部门,职等,并且它具有由角色,部门和职等组成的复合主ID。如何使Teacherid为自动生成的?
答案 0 :(得分:1)
如果您浏览THIS ANSWER,将会发现我们在复合主键中没有自动递增属性。因此,解决方法是使用indexing
和unique constraint
的概念。将role
,deptt
,grade
列设为indices
,并将unique
约束设置为true
。这将确保这三个值对始终是唯一的(例如primaryKey)。然后在实体中将techerId
添加为Primarykey
(autoGenerate = true)。您的entity
类如下所示:
@Entity(tableName = "teacher",indices = arrayOf(Index(value = ["role","department","grade"],unique = true)))
public class Teacher{
@PrimaryKey(autoGenerate = true)
int teacher_id;
@ColumnInfo(name = "name")
String teacher_name;
//Rest of the fields
......
......
}