MySQL Create Table SQL
Table Structure: okayapi_landi_contract_income:/tablelist/okayapi_landi_contract_income.html
-- MySQL Table okayapi_landi_contract_income
-- From: OkayAPI.com
CREATE TABLE `okayapi_landi_contract_income` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`room_number` varchar(64) NULL COMMENT '',
`okayapi_landi_contract_income_time` date NULL COMMENT '',
`receive` double NULL DEFAULT '0' COMMENT '',
`pay` double NULL DEFAULT '0' COMMENT '',
`benifit` double NULL DEFAULT '0' COMMENT '',
KEY `room_number` (`room_number`),
KEY `okayapi_landi_contract_income_time` (`okayapi_landi_contract_income_time`),
KEY `receive` (`receive`),
KEY `pay` (`pay`),
KEY `benifit` (`benifit`),
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-5 of 5 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
room_number | varchar(64) | 是 | ||||
okayapi_landi_contract_income_time | date | 是 | ||||
receive | double | 0 | 是 | 0 | ||
pay | double | 0 | 是 | 0 | ||
benifit | double | 0 | 是 | 0 |