<i id='zBzJm'><tr id='zBzJm'><dt id='zBzJm'><q id='zBzJm'><span id='zBzJm'><b id='zBzJm'><form id='zBzJm'><ins id='zBzJm'></ins><ul id='zBzJm'></ul><sub id='zBzJm'></sub></form><legend id='zBzJm'></legend><bdo id='zBzJm'><pre id='zBzJm'><center id='zBzJm'></center></pre></bdo></b><th id='zBzJm'></th></span></q></dt></tr></i><div id='zBzJm'><tfoot id='zBzJm'></tfoot><dl id='zBzJm'><fieldset id='zBzJm'></fieldset></dl></div>
          <bdo id='zBzJm'></bdo><ul id='zBzJm'></ul>

      1. <small id='zBzJm'></small><noframes id='zBzJm'>

        <legend id='zBzJm'><style id='zBzJm'><dir id='zBzJm'><q id='zBzJm'></q></dir></style></legend>

      2. <tfoot id='zBzJm'></tfoot>

      3. 在 MYSQL 中批量插入

        时间:2023-06-03
            <bdo id='EWOOj'></bdo><ul id='EWOOj'></ul>
            • <i id='EWOOj'><tr id='EWOOj'><dt id='EWOOj'><q id='EWOOj'><span id='EWOOj'><b id='EWOOj'><form id='EWOOj'><ins id='EWOOj'></ins><ul id='EWOOj'></ul><sub id='EWOOj'></sub></form><legend id='EWOOj'></legend><bdo id='EWOOj'><pre id='EWOOj'><center id='EWOOj'></center></pre></bdo></b><th id='EWOOj'></th></span></q></dt></tr></i><div id='EWOOj'><tfoot id='EWOOj'></tfoot><dl id='EWOOj'><fieldset id='EWOOj'></fieldset></dl></div>

              <small id='EWOOj'></small><noframes id='EWOOj'>

              <legend id='EWOOj'><style id='EWOOj'><dir id='EWOOj'><q id='EWOOj'></q></dir></style></legend>
                <tbody id='EWOOj'></tbody>
              1. <tfoot id='EWOOj'></tfoot>

                  本文介绍了在 MYSQL 中批量插入的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  在 MS SQL 上,我可以使用下面的 sql 命令进行批量插入:

                  On MS SQL, I can do bulk insert using the sql command below:

                  BULK INSERT myDatabase.MyTable FROM 'C:\MyTextFile.txt' WITH  FIELDTERMINATOR = ','
                  

                  现在我想在 MySQL 上做同样的事情,但我似乎无法弄清楚它是如何工作的以及使用什么查询.

                  Now I want to do the same on MySQL but I can't seem to figure out how this works and what query to use.

                  推荐答案

                  在 MySQL 中,相当于

                  In MySQL, the equivalent would be

                  加载数据文件

                  http://dev.mysql.com/doc/refman/5.1/en/load-data.html

                  LOAD DATA INFILE 'C:\MyTextFile'
                  INTO TABLE myDatabase.MyTable
                  FIELDS TERMINATED BY ','
                  

                  这篇关于在 MYSQL 中批量插入的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:MYSQL count(*) 和 count(1) 哪个更好? 下一篇:如何在mysql中获得每个对应月份的第一天?

                  相关文章

                  • <bdo id='wkyzp'></bdo><ul id='wkyzp'></ul>
                  1. <i id='wkyzp'><tr id='wkyzp'><dt id='wkyzp'><q id='wkyzp'><span id='wkyzp'><b id='wkyzp'><form id='wkyzp'><ins id='wkyzp'></ins><ul id='wkyzp'></ul><sub id='wkyzp'></sub></form><legend id='wkyzp'></legend><bdo id='wkyzp'><pre id='wkyzp'><center id='wkyzp'></center></pre></bdo></b><th id='wkyzp'></th></span></q></dt></tr></i><div id='wkyzp'><tfoot id='wkyzp'></tfoot><dl id='wkyzp'><fieldset id='wkyzp'></fieldset></dl></div>

                    <small id='wkyzp'></small><noframes id='wkyzp'>

                      <legend id='wkyzp'><style id='wkyzp'><dir id='wkyzp'><q id='wkyzp'></q></dir></style></legend><tfoot id='wkyzp'></tfoot>