+ Use This Table All Design

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 NameField TypeDefaultIS NULLField CommentIndexDemo Data
numvarchar(64)
plan_idint(11)Normal Index
moneydouble
ctimedatetime
termint(11)
othersvarchar(64)

Guess You Like

MySQL Table Design okayapi_landi_agent_purchase

MySQL Table Design okayapi_landi_contract_income

MySQL Table Design okayapi_landi_cost_le

MySQL Table Design okayapi_landi_daily_service

MySQL Table Design okayapi_landi_diary_reminder

MySQL Table Design okayapi_landi_drinking_water

MySQL Table Design okayapi_landi_emergency_problem

MySQL Table Design okayapi_landi_fac_sta

MySQL Table Design okayapi_landi_flight_picking

MySQL Table Design okayapi_landi_grocery_item

MySQL Table Design okayapi_landi_grocery_running

MySQL Table Design okayapi_landi_guest

MySQL Table Design okayapi_landi_guest_balance

MySQL Table Design okayapi_landi_guest_service

MySQL Table Design okayapi_landi_host

MySQL Table Design okayapi_landi_income

MySQL Table Design okayapi_landi_intern

MySQL Table Design okayapi_landi_invoice_detail

MySQL Table Design okayapi_landi_laundry

MySQL Table Design okayapi_landi_mail_reminder

TOP ↑