Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Alter table table1 add index col1_idx (column1);
即使 table1 有很多行并且所有的 column1 都有非空值,上面的查询说“0 Rows AFfected”。为什么会这样?
这是因为查询不会直接影响任何行,而不是修改行的更新语句。它(非常、非常、非常基本)只会改变列的存储和排序方式。