我有一个表包含如下列:
time tv_program user_name
xxx friends John
xxx Game of Thrones Kate
...
...
现在我想为 tv_program 和 user_name 创建单独的索引表,例如:
id tv_program
1 friends
2 Game of Thrones
3 ...
4 ...
id user_name
1 John
2 Kate
3 ...
4 ...
并更新原始表,将 tv_program 和 user_name 替换为索引号,而不是像
time tv_program user_name
xxx 1 1
xxx 2 2
... ... ...
有什么简单的方法可以做到这一点吗?非常感谢!!