What is the time complexity of simple SQL statements such as:
INSERT into table (col1, col2, col3) values ("a", "b", "c")
How it depends on the following:
- table size
- data type col1, col2
- the number of columns in the table, namely: col1, col2, col3, etc.
It depends on me whether I use MyISAM or InnoDB?
source
share