多重数据输入的最佳格式是什么?
例如,我想将学生列表输入数据库,您能建议任何格式化的 csv 文件或 Excel 吗?...什么是最好的?...任何建议将不胜感激!谢谢! :D
For example i would like to input a list of students into a database, can you suggest any formatted csv file or excel?.. what would be the best?..any suggestions would be appreciated! thanks! :D
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
与 Excel 文件相比,有更多的库可供更广泛的语言使用 CSV,因此如果这是唯一的两个选择,我强烈建议使用 CSV。
但是,如果您将它们放入数据库中,您可能可以编写一个很好的工具来提示人们将所有数据输入数据库,或者抓取现有的学生信息源以推送到数据库中。我的意思是,拥有数据库的全部意义在于您可以编写查询,因此也可以编写一些用于放入数据的工具。 :)
There are far more libraries available for a wider range of languages to work with CSV than Excel files, so if those are the only two choices, I'd strongly suggest CSV.
But if you're putting them into a database, you could probably write a nice tool to either prompt a human to enter all the data into a database, or scrape an existing source of student information to push into the database. I mean, the whole point of having the database is so you can write queries, so might as well write some tools for putting data in too. :)