I am creating a table (table D in the list below) via select statement from another table (table B from the list below). It creates just fine. My question is ... when i go in using the MySQL Control Center to see the tables I get the following information:
table size(bytes) type
A 26 MyISAM
B 66 MyISAM
C 0 MyISAM
D 3276 InnoDB
E 0 MyISAM
table D only has 5 records in it.
so my questions are.....
Why is my table over 3MB in size with only five records (just data)
and
What is InnoDB and do I need to define this when I create my table?
Using MySQL 4.1.12a by the way.
thx
table size(bytes) type
A 26 MyISAM
B 66 MyISAM
C 0 MyISAM
D 3276 InnoDB
E 0 MyISAM
table D only has 5 records in it.
so my questions are.....
Why is my table over 3MB in size with only five records (just data)
and
What is InnoDB and do I need to define this when I create my table?
Using MySQL 4.1.12a by the way.
thx