示例:
studentId
name
staffId
name
accountId
foreignKeyId(studentId or staffId)
username
password
usertype
答案 0 :(得分:1)
Account
-------
accountid
username
password
usertype
...
Student
-------
studentid
accountid
name
...
Staff
-----
staffid
accountid
name
...
答案 1 :(得分:-1)
两个表都应该是InnoDB。 InnoDB详细信息 - http://dev.mysql.com/doc/refman/5.5/en/innodb-foreign-key-constraints.html
以下Stack Overflow答案可能有所帮助。