我正在导入很多(仅约 10,000 名)员工,然后一次将他们全部设为用户帐户。插入我的 user_profile 表会减慢一切,因为表的主键也是外键,而不是通常的自动增量 ID。
有什么办法可以加快这个速度吗?或者我是否需要返回并以某种方式向 user_profile 添加一个自动增量 ID?
编辑:
user:
id
username
salt
password
user_profile:
user_id -> Primary Key and Foreign Key to user table
first_name
last_name
email
...