Word 文档转 CSV 格式
我在微软文档中有一个表格格式的数据,我需要将其转换为 csv 格式。因为据我所知,将 csv 中的值存储到 MS SQl 服务器中的表中更容易。 请帮我完成这个转换。让我知道我是否可以将 Word 文档中的值存储到 MS SQL 2008 中的表本身
I have a data in microsoft document in a tabular format which i need to convert into csv format.beacuse as far as my knowledge its easier to store values from csv to table in MS SQl server..
please help me out in doing this conversion. let me know whether i can store values from word document to table itself in MS SQL 2008
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这在 Excel 中更容易做到,但也可以通过“另存为”功能实现。
CSV 只是一个文本文件,字段之间有逗号。
http://en.wikipedia.org/wiki/Comma-separated_values
对我来说,它使用文本编辑器比 Word 更容易,但不是 Excel。
This is easier to do in Excel, but possible with the save as feature as well.
A CSV is just a text file with commas in between the fields.
http://en.wikipedia.org/wiki/Comma-separated_values
For me, it would be easier to use a text editor than Word, but not Excel.