+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_tea_swiper:/tablelist/okayapi_tea_swiper.html


-- MySQL Table okayapi_tea_swiper
-- From: OkayAPI.com
CREATE TABLE `okayapi_tea_swiper` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `swiper_name` varchar(255) NULL COMMENT '轮播图名称',
    `swiper_picture` varchar(255) NULL COMMENT '轮播图照片',
    KEY `swiper_name` (`swiper_name`),
    KEY `swiper_picture` (`swiper_picture`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '小程序顶部轮播图';

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


MySQL database table structure design

Displaying 1-2 of 2 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
swiper_namevarchar(255)轮播图名称
swiper_picturevarchar(255)轮播图照片

Guess You Like

MySQL Table Design okayapi_logs

MySQL Table Design okayapi_app_version

MySQL Table Design okayapi_tea

MySQL Table Design okayapi_tea_moment

MySQL Table Design okayapi_tea_order

MySQL Table Design okayapi_tea_user

MySQL Table Design okayapi_tea_shopcar

MySQL Table Design okayapi_zheng_cms_article

MySQL Table Design okayapi_zheng_cms_article_category

MySQL Table Design okayapi_zheng_cms_article_tag

MySQL Table Design okayapi_zheng_cms_category

MySQL Table Design okayapi_zheng_cms_comment

MySQL Table Design okayapi_zheng_cms_page

MySQL Table Design okayapi_zheng_cms_setting

MySQL Table Design okayapi_zheng_cms_system

MySQL Table Design okayapi_zheng_cms_tag

MySQL Table Design okayapi_zheng_cms_topic

MySQL Table Design okayapi_zheng_pay_in_order

MySQL Table Design okayapi_zheng_pay_in_order_detail

MySQL Table Design okayapi_zheng_pay_mch

TOP ↑