发表于 2018-10-8 11:38:49

MySQL 5.7新支持--------通用表空间实战

mysql> show create table test_general;  
+--------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  
| Table      | Create Table                                                                                                                                                                                    |
  
+--------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  
| test_general | CREATE TABLE `test_general` (
  
`id` bigint(20) NOT NULL AUTO_INCREMENT,
  
`name` varchar(64) NOT NULL,
  
PRIMARY KEY (`id`)
  
) /*!50100 TABLESPACE `ts1` */ ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 |
  
+--------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  
1 row in set (0.06 sec)


页: [1]
查看完整版本: MySQL 5.7新支持--------通用表空间实战