ERROR 1062 (23000): Duplicate entry for key 'PRIMARY'
ALTER TABLE table1 ADD COLUMN column1 VARCHAR(400) DEFAULT NULL;
ERROR 1062 (23000): Duplicate entry '82133627' for key 'PRIMARY'
select * from table1 where <primary_key_field>='82133627';
Primary key - primary_key_field int(11) NOT NULL
solution - need to lock table, and then after running the query unlock it
LOCK TABLES "table1" WRITE;
run the alter table command:
ALTER TABLE table1 ADD COLUMN column1 VARCHAR(400) DEFAULT NULL;
then
UNLOCK TABLES;
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/28939273/viewspace-2286645/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- ERROR 1062 (23000): Duplicate entry '0' for key 'PRIMARY'Error
- 從ERROR 1062 (23000) at line Duplicate entry 'R01' for key 'PRIMARY' 能看出什麼Error
- mysql主從複製錯誤:Last_SQL_Error: Error 'Duplicate entry '327' for key 'PRIMARY'' on query. Default databa...MySqlASTError
- 帝國CMS後臺新增資訊報錯Duplicate entry xx for key PRIMARY
- HOW TO SOLVE ERROR 1062 (23000) ?Error
- ERROR 1130: Host ***.***.***.*** is not allowed to connect to this MySQL serverERROR 1062 (23000):ErrorMySqlServer
- DUMP-CX_SY_OPEN_SQL_DB-DBSQL_DUPLICATE_KEY_ERRORSQLError
- sql primary key procedureSQL
- Q:[Vue warn]: Duplicate keys detected: ‘PAYACT‘. This may cause an update error.VueError
- mysql中key 、primary key 、unique key 與index區別MySqlIndex
- vue報錯之Duplicate keys detected: '0'. This may cause an update error.VueError
- yum error - package is a duplicate withErrorPackage
- SQL Server Primary Key ConstraintsSQLServerAI
- mysql INSERT ... ON DUPLICATE KEY UPDATEMySql
- unique index與primary key的區別Index
- oracle資料庫primary key和unique key的異同Oracle資料庫
- 【Mysql】Slave_SQL_Running: No:Last_Error: Error :1032/1062MySqlASTError
- ERROR in Entry module not found Error Can't resolve 'babel' in ' UseErrorBabel
- MySQL_插入更新 ON DUPLICATE KEY UPDATEMySql
- 簡單分析MySQL中的primary key功能MySql
- 關於primary key和foreign key的問題處理
- MySQL insert on duplicate key update 死鎖MySql
- REPLACE與INSERT INTO ... ON DUPLICATE KEY總結
- opatch apply 時碰到 'duplicate entry: META-INF/LICENSE.txt'APP
- ALTER TABLE causes auto_increment resulting key 'PRIMARY'REM
- MySQL pt-duplicate-key-checker工具使用初探MySql
- MySQL批量Insert應用ON DUPLICATE KEY UPDATEMySql
- SAP MRKO Error - For document type RE, an entry is required in field Reference -ErrorUI
- ORA-02429: cannot drop index used for enforcement of unique/primary keyIndex
- Creating Physical Standby using RMAN Duplicate Without Shutting Primary_789370.1
- Java中List集合轉Map集合報錯:Duplicate keyJava
- MySQL 5.5 INSERT ... ON DUPLICATE KEY UPDATE語句說明MySql
- BUG: pymysql executemany不支援insert on duplicate key updateMySql
- MySQL 關於 INSERT INTO...ON DUPLICATE KEY UPDATE 的使用MySql
- 如何證明INNODB輔助索引葉子結點KEY值相同的按照PRIMARY KEY排序索引排序
- MIGO Error:Account determination for entry LGCC WRX not possibleGoErrorGC
- Creating Physical Standby using RMAN Duplicate Without Shutting down The Primary [ID 789370.1]
- Exception_android_java.util.zip.ZipException: duplicate entry:android/support/multidex/MultiDexExceptionAndroidJavaIDE