MySQL Create Table SQL
Table Structure: okayapi_eduwind_ew_friend_link:/tablelist/okayapi_eduwind_ew_friend_link.html
-- MySQL Table okayapi_eduwind_ew_friend_link
-- From: OkayAPI.com
CREATE TABLE `okayapi_eduwind_ew_friend_link` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`title` char(128) NOT NULL COMMENT '文字',
`url` char(255) NOT NULL COMMENT '链接地址',
`logo` char(255) NOT NULL COMMENT 'logo图片',
`weight` int(11) NOT NULL DEFAULT '0' COMMENT '',
KEY `title` (`title`),
KEY `url` (`url`),
KEY `logo` (`logo`),
KEY `weight` (`weight`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'EW在线教育-友情链接';
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 |
---|---|---|---|---|---|---|
title | char(128) | 否 | 文字 | |||
url | char(255) | 否 | 链接地址 | |||
logo | char(255) | 否 | logo图片 | |||
weight | int(11) | 0 | 否 | 0 |