[127.0.0.1] [my1] 14:48:02 >select * from t1;
±—±-------±-----+
| id | gender | age |
±—±-------±-----+
| 1 | f | 10 |
| 2 | kk | 60 |
| 3 | f | 9 |
| 4 | m | 10 |
| 5 | m | 11 |
| 6 | m | 9 |
±—±-------±-----+
6 rows in set (0.00 sec)
[127.0.0.1] [my1] 14:46:05 >show index from t1;
±------±-----------±---------±-------------±------------±----------±------------±---------±-------±-----±-----------±--------±--------------±--------±-----------±----------+
| Table | Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment | Index_comment | Visible | Expression | Clustered |
±------±-----------±---------±-------------±------------±----------±------------±---------±-------±-----±-----------±--------±--------------±--------±-----------±----------+
| t1 | 0 | PRIMARY | 1 | id | A | 0 | NULL | NULL | | BTREE | | | YES | NULL | YES |
±------±-----------±---------±-------------±------------±----------±------------±---------±-------±-----±-----------±--------±--------------±--------±-----------±----------+
[127.0.0.1] [my1] 14:46:10 >begin;
update t1 set age=60 where gender=‘kk’;