Table: nornix_system.superclass
Structure Name | Type | Null | Key | Default | Extra | Comment |
---|
No | int(10) unsigned | NO | PRI | | auto_increment | |
---|
Name | varchar(32) | NO | UNI | | | |
---|
DescNo | int(10) unsigned | YES | | | | |
---|
IndexesNon-unique | Key | Seq | Column | Collation | Cardinality | Sub part | Packed | Null | Type | Comment |
---|
0 | Name | 1 | Name | A | 3 | | | | BTREE | |
InformationEngine | Row format | Table collation | Create options |
---|
MyISAM | Fixed | utf8_general_ci | row_format=FIXED |
CREATE TABLE `superclass` (
`No` int(10) unsigned NOT NULL auto_increment,
`Name` varchar(32) NOT NULL,
`DescNo` int(10) unsigned default NULL,
PRIMARY KEY (`No`),
UNIQUE KEY `Name` (`Name`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED