Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含电子邮件 + 街道地址的 csv 文件。我已经使用具有相同电子邮件的用户安装了 wordpress,并且我想将街道地址导入 user_meta 表中的各个用户。
我怎样才能做到这一点?想到的一种愚蠢的方法是使用文本编辑器搜索和替换来创建一个巨大的插入查询列表。
有没有更好的方法来做到这一点?
您可以使用
LOAD DATA INFILE your_file.csv INTO your_table
参考:加载数据 - MySQL