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)
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)
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.