如何将txt中的表导入mysql,文件顶部和底部有垃圾?
假设我有一个20行的文件,前3行是使用表格的无用指令,第4行是标题,第5到17行是制表符分隔的数据,第18到20行是一些无用的注释。我想将表从第4行导入到第17行。我怎样才能在 MySQL 中做到这一点?有什么可以与“SKIP”一起使用吗?
谢谢!
Let say I have a file with 20 lines, the first 3 lines are useless instruction for using the table, the 4th line is the header, the 5th to 17th lines are tab-delimited data, and the 18th to 20th lines are some useless remarks. And I want to import the table from the 4th line to the 17th line. How can I do it in MySQL? Something to work with "SKIP"?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以选择忽略前 x 行。其余的您必须通过其他逻辑(可能是存储过程)来解析和删除。
You have the option to ignore the first x lines. The rest you have to parse and remove by other logic, maybe a store procedure.
要忽略文件顶部的行,可以使用
--ignore-lines
选项。To ignore the lines at the top of the file you can use the
--ignore-lines
option.