- 论坛徽章:
- 0
|
/*Column Information For - test.tt*/
------------------------------------
Field Type Collation Null Key Default Extra Privileges Comment
------ ----------- ----------------- ------ ------ ------- -------------- ------------------------------- -------
id int(4) NULL PRI (NULL) auto_increment select,insert,update,references
name varchar(40) gb2312_chinese_ci YES (NULL) select,insert,update,references
/*Index Information For - test.tt*/
-----------------------------------
Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment
------ ---------- -------- ------------ ----------- --------- ----------- -------- ------ ------ ---------- -------
tt 0 PRIMARY 1 id A 41 (NULL) (NULL) BTREE
/*DDL Information For - test.tt*/
---------------------------------
Table Create Table
------ ----------------------------------------------------------------------------------------------------------------------------------------------------------
tt CREATE TABLE `tt` (
`id` int(4) NOT NULL auto_increment,
`name` varchar(40) default NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=gb2312 |
|