MySQL Create Table SQL
Table Structure: okayapi_landi_invoice:/tablelist/okayapi_landi_invoice.html
-- MySQL Table okayapi_landi_invoice
-- From: OkayAPI.com
CREATE TABLE `okayapi_landi_invoice` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`num` varchar(64) NULL COMMENT '',
`plan_id` int(11) NULL COMMENT '',
`money` double NULL COMMENT '',
`ctime` datetime NULL COMMENT '',
`term` int(11) NULL COMMENT '',
`others` varchar(64) NULL COMMENT '',
KEY `num` (`num`),
KEY `plan_id` (`plan_id`),
KEY `money` (`money`),
KEY `ctime` (`ctime`),
KEY `term` (`term`),
KEY `others` (`others`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'LD酒店租房管理-发票';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-6 of 6 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
num | varchar(64) | 是 | ||||
plan_id | int(11) | 是 | Normal Index | |||
money | double | 是 | ||||
ctime | datetime | 是 | ||||
term | int(11) | 是 | ||||
others | varchar(64) | 是 |