将 csv 导入到 sql
我必须将 csv 文件导入到已创建的 SQL 数据库表(空且具有相同数量的命名列)。如果您可以建议任何教程或提供一些提示,那就太好了。
I have to import an csv file to SQL database table which already created (empty and has the same number of named columns). It would be great if you could suggest any tutorials or give some tips.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您使用的是 Microsoft SQL Server。您需要在程序中还是手动执行此操作?有一个关于使用
bcp
教程 > 命令,或者使用 SQL 命令。如果您需要为自己的代码解析 CSV 文件,请参阅这个上一个问题 。I assume you are using Microsoft SQL Server. Do you need to do this in a program or manually? There is a tutorial on using the
bcp
command for that, or alternatively a SQL command. If you need to parse the CSV file for your own code, see this previous SO question.