MySQL Create Table SQL
Table Structure: okayapi_cmdb_c_test_person:/tablelist/okayapi_cmdb_c_test_person.html
-- MySQL Table okayapi_cmdb_c_test_person
-- From: OkayAPI.com
CREATE TABLE `okayapi_cmdb_c_test_person` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`okayapi_cmdb_c_test_person_name` varchar(20) NOT NULL COMMENT '',
`birth` datetime(6) NOT NULL COMMENT '',
KEY `okayapi_cmdb_c_test_person_name` (`okayapi_cmdb_c_test_person_name`),
KEY `birth` (`birth`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'CMDB管理-测试人员';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-2 of 2 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
okayapi_cmdb_c_test_person_name | varchar(20) | 否 | ||||
birth | datetime(6) | 否 |