MySQL Create Table SQL
Table Structure: okayapi_eduwind_ew_city:/tablelist/okayapi_eduwind_ew_city.html
-- MySQL Table okayapi_eduwind_ew_city
-- From: OkayAPI.com
CREATE TABLE `okayapi_eduwind_ew_city` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`okayapi_eduwind_ew_city_code` varchar(6) NOT NULL COMMENT '',
`okayapi_eduwind_ew_city_name` varchar(20) NOT NULL COMMENT '',
`provinceCode` varchar(6) NOT NULL COMMENT '',
KEY `okayapi_eduwind_ew_city_code` (`okayapi_eduwind_ew_city_code`),
KEY `okayapi_eduwind_ew_city_name` (`okayapi_eduwind_ew_city_name`),
KEY `provinceCode` (`provinceCode`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'EW在线教育-城市';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-3 of 3 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
okayapi_eduwind_ew_city_code | varchar(6) | 否 | ||||
okayapi_eduwind_ew_city_name | varchar(20) | 否 | ||||
provinceCode | varchar(6) | 否 |