Mysqlload primary key verification _ MySQL

Source: Internet
Author: User
Mysqlload primary key verification load data LOCAL infile '~ /Documents/load_test.txt 'into TABLE test fields terminated by', 'enabledby '"'lines TERMINATED by'/N ';

1. if the id is not the primary key, it will not stop increasing.
Mysql> load data LOCAL infile '~ /Documents/load_test.txt 'into TABLE test fields terminated by', 'enabledby '"'lines TERMINATED by'/N ';
Query OK, 2 rows affected (0.02 sec)
Records: 2 Deleted: 0 Skipped: 0 Warnings: 0

Mysql> select * from test;
+ ------ + ----------- +
| Id | name |
+ ------ + ----------- +
| 1 | wang |
| 2 | xia |
| 3 | wang-load |
| 4 | xia-load |
+ ------ + ----------- +
4 rows in set (0.00 sec)

Mysql> load data LOCAL infile '~ /Documents/load_test.txt 'into TABLE test fields terminated by', 'enabledby '"'lines TERMINATED by'/N ';
Query OK, 2 rows affected (0.04 sec)
Records: 2 Deleted: 0 Skipped: 0 Warnings: 0

Mysql> select * from test; + ------ + ----------- +
| Id | name |
+ ------ + ----------- +
| 1 | wang |
| 2 | xia |
| 3 | wang-load |
| 4 | xia-load |
| 3 | wang-load |
| 4 | xia-load |
+ ------ + ----------- +
6 rows in set (0.00 sec)


2. if id is the primary key, it will skip
Mysql> alter table test add primary key (id );
Query OK, 2 rows affected (0.38 sec)
Records: 2 Duplicates: 0 Warnings: 0

Mysql> select * from test; + ---- + ------ +
| Id | name |
+ ---- + ------ +
| 1 | wang |
| 2 | xia |
+ ---- + ------ +
2 rows in set (0.00 sec)

Mysql> load data LOCAL infile '~ /Documents/load_test.txt 'into TABLE test fields terminated by', 'enabledby '"'lines TERMINATED by'/N ';
Query OK, 2 rows affected (0.05 sec)
Records: 2 Deleted: 0 Skipped: 0 Warnings: 0

Mysql> select * from test; + ---- + ----------- +
| Id | name |
+ ---- + ----------- +
| 1 | wang |
| 2 | xia |
| 3 | wang-load |
| 4 | xia-load |
+ ---- + ----------- +
4 rows in set (0.00 sec)



Modify a TXT file
Mysql> load data LOCAL infile '~ /Documents/load_test.txt 'into TABLE test fields terminated by', 'enabledby '"'lines terminated by'/N'; Query OK, 0 rows affected (0.00 sec)
Records: 2 Deleted: 0 Skipped: 2 Warnings: 0

Mysql> select * from test; + ---- + ----------- +
| Id | name |
+ ---- + ----------- +
| 1 | wang |
| 2 | xia |
| 3 | wang-load |
| 4 | xia-load |
+ ---- + ----------- +
4 rows in set (0.00 sec)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.