MySQL Create Table SQL
Table Structure: okayapi_landi_invoice_detail:/tablelist/okayapi_landi_invoice_detail.html
-- MySQL Table okayapi_landi_invoice_detail
-- From: OkayAPI.com
CREATE TABLE `okayapi_landi_invoice_detail` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`inv_id` int(11) NULL COMMENT '',
`item` varchar(64) NULL COMMENT '',
`total` int(11) NULL COMMENT '',
`all_money` double NULL COMMENT '',
KEY `inv_id` (`inv_id`),
KEY `item` (`item`),
KEY `total` (`total`),
KEY `all_money` (`all_money`),
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-4 of 4 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
inv_id | int(11) | 是 | Normal Index | |||
item | varchar(64) | 是 | ||||
total | int(11) | 是 | ||||
all_money | double | 是 |