如何将txt中的表导入mysql,文件顶部和底部有垃圾?

发布于 2024-09-27 17:44:34 字数 139 浏览 3 评论 0原文

假设我有一个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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

甲如呢乙后呢 2024-10-04 17:44:34

您可以选择忽略前 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.

抚你发端 2024-10-04 17:44:34

要忽略文件顶部的行,可以使用 --ignore-lines 选项。

 --ignore-lines=N
           Ignore the first N lines of the data file.

To ignore the lines at the top of the file you can use the --ignore-lines option.

 --ignore-lines=N
           Ignore the first N lines of the data file.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文