Set average row length and max, min rows
mysql>
mysql> CREATE TABLE MATCHES
-> (MATCHNO INTEGER NOT NULL PRIMARY KEY,
-> TEAMNO INTEGER NOT NULL,
-> EmployeeNO INTEGER NOT NULL,
-> WON SMALLINT NOT NULL,
-> LOST SMALLINT NOT NULL)
-> AVG_ROW_LENGTH = 15
-> MAX_ROWS = 2000000
-> MIN_ROWS = 1000000;
Query OK, 0 rows affected (0.00 sec)
mysql>
mysql>
mysql> drop table matches;
Query OK, 0 rows affected (0.00 sec)
Related examples in the same category