- 论坛徽章:
- 0
|
本帖最后由 cenalulu 于 2012-05-29 15:31 编辑
同样的表结构同样的语句,第一张表报错,但是记录能插进去~~如果把seconds_behind_master=39905 改小seconds_behind_master=0 就不报错了~
mysql> desc slave_status;
+-----------------------+-------------+------+-----+-------------------+-------+
| Field | Type | Null | Key | Default | Extra |
+-----------------------+-------------+------+-----+-------------------+-------+
| slave_host | varchar(32) | NO | PRI | NULL | |
| ctime | timestamp | NO | PRI | CURRENT_TIMESTAMP | |
| seconds_behind_master | int(11) | YES | | NULL | |
+-----------------------+-------------+------+-----+-------------------+-------+
3 rows in set (0.00 sec)
mysql> insert into slave_status set slave_host="db13083",seconds_behind_master=39905;
ERROR 1054 (42S22): Unknown column 'slave_host' in 'field list'
mysql> desc slave_status_tmp;
+-----------------------+-------------+------+-----+-------------------+-------+
| Field | Type | Null | Key | Default | Extra |
+-----------------------+-------------+------+-----+-------------------+-------+
| slave_host | varchar(32) | NO | PRI | NULL | |
| ctime | timestamp | NO | PRI | CURRENT_TIMESTAMP | |
| seconds_behind_master | int(11) | YES | | NULL | |
+-----------------------+-------------+------+-----+-------------------+-------+
3 rows in set (0.00 sec)
mysql> insert into slave_status_tmp set slave_host="db13083",seconds_behind_master=39905;
Query OK, 1 row affected (0.00 sec)
最后附上表状态
mysql> show table status like 'slave_status'\G
*************************** 1. row ***************************
Name: slave_status
Engine: MyISAM
Version: 10
Row_format: Dynamic
Rows: 98332993
Avg_row_length: 20
Data_length: 1979211156
Max_data_length: 281474976710655
Index_length: 1554194432
Data_free: 0
Auto_increment: NULL
Create_time: 2011-02-22 14:18:17
Update_time: 2012-05-28 11:30:07
Check_time: NULL
Collation: gbk_chinese_ci
Checksum: NULL
Create_options:
Comment:
1 row in set (0.00 sec)
mysql> show table status like 'slave_status_tmp'\G
*************************** 1. row ***************************
Name: slave_status_tmp
Engine: MyISAM
Version: 10
Row_format: Dynamic
Rows: 5
Avg_row_length: 24
Data_length: 120
Max_data_length: 281474976710655
Index_length: 2048
Data_free: 0
Auto_increment: NULL
Create_time: 2012-05-28 11:08:42
Update_time: 2012-05-28 11:23:35
Check_time: NULL
Collation: gbk_chinese_ci
Checksum: NULL
Create_options:
Comment:
1 row in set (0.00 sec) |
|