+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_lvyou_jee_user_bill:/tablelist/okayapi_lvyou_jee_user_bill.html


-- MySQL Table okayapi_lvyou_jee_user_bill
-- From: OkayAPI.com
CREATE TABLE `okayapi_lvyou_jee_user_bill` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `user_id` int(11) NOT NULL COMMENT '',
    `code_id` varchar(20) NOT NULL COMMENT '',
    `money` decimal(10,2) NOT NULL COMMENT '',
    `balance` decimal(10,2) NOT NULL COMMENT '',
    `mark` varchar(20) NOT NULL COMMENT '',
    `okayapi_lvyou_jee_user_bill_type` smallint(6) NOT NULL COMMENT '',
    `create_time` int(11) NOT NULL COMMENT '',
    KEY `user_id` (`user_id`),
    KEY `code_id` (`code_id`),
    KEY `money` (`money`),
    KEY `balance` (`balance`),
    KEY `mark` (`mark`),
    KEY `okayapi_lvyou_jee_user_bill_type` (`okayapi_lvyou_jee_user_bill_type`),
    KEY `create_time` (`create_time`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'lvyou旅游-用户账单';

After replication, you can go to the database to create the database table.


MySQL database table structure design

Displaying 1-7 of 7 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
user_idint(11)
code_idvarchar(20)
moneydecimal(10,2)
balancedecimal(10,2)
markvarchar(20)
okayapi_lvyou_jee_user_bill_typesmallint(6)
create_timeint(11)

Guess You Like

MySQL Table Design okayapi_opentrip_travel_admin

MySQL Table Design okayapi_opentrip_travel_category

MySQL Table Design okayapi_opentrip_travel_order

MySQL Table Design okayapi_opentrip_travel_product

MySQL Table Design okayapi_opentrip_travel_shopcart

MySQL Table Design okayapi_opentrip_travel_user

MySQL Table Design okayapi_travel_agents

MySQL Table Design okayapi_travel_agent_users

MySQL Table Design okayapi_travel_categories

MySQL Table Design okayapi_travel_depots

MySQL Table Design okayapi_travel_depot_annuals

MySQL Table Design okayapi_travel_depot_logs

MySQL Table Design okayapi_travel_depot_staffs

MySQL Table Design okayapi_travel_depot_vouchers

MySQL Table Design okayapi_travel_devices

MySQL Table Design okayapi_travel_exist_statistics

MySQL Table Design okayapi_travel_features

MySQL Table Design okayapi_travel_groups

MySQL Table Design okayapi_travel_orders

MySQL Table Design okayapi_travel_staff_exchanges

TOP ↑