我有一个由3个表组成的数据库。
用户:4列userId [主键],名称,emailId,密码
residentController :3列userId [foreign],departmentId [foreign],checkDefault
{
"compilerOptions": {
"outDir": "./build/",
"sourceMap": true,
"noImplicitAny": true,
"module": "commonjs",
"target": "es5",
"jsx": "react"
},
"files": [
"./src/app/index.tsx"
]
}
将设置为1。
部门,包含6列:departmentId [primaryKey],departmentName,departmentDesc,departmentLink,checkDefault,departmentCategory
以下是用户注册Android应用程序时的序列。将调用以下PHP脚本。
它会将用户的记录添加到数据库中。在checkDefault
表中插入数据后,我想从user
表中获取所有“departmentNames”并将其插入department
。最后,在特定用户注册之后,residentController必须将这些值填充到residentController表中。
residentController
这是我的php脚本。
userId departmentId checkDefault
---------------------------------
1 1 1
1 2 1
1 3 1
1 4 1
1 5 1
我的问题是,在我目前的PHP脚本中,我不知道如何将departmentID插入residentController表。 departmentId是一个外键,在我目前的部门表中有5个部门。我只需要帮助在我的php中编写部件,我可以将值插入到residentController表中。截至目前,当前的PHP脚本只添加了一个新用户,但我需要帮助将值插入到我的residentController表中。