MySQL数据库表结构设计
第 1-4 条, 共 4 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
information_id | int(11) | 否 | 无索引 | |||
language_id | int(11) | 否 | 无索引 | |||
title | varchar(64) | 否 | 无索引 | |||
description | text | 否 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:openant电商-信息描述:https://open.yesapi.cn/tablelist/yesapi_openant_information_description.html
-- 数据库大全:openant电商-信息描述
-- 来源:YesApi.cn
CREATE TABLE `yesapi_openant_information_description` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`information_id` int(11) NOT NULL COMMENT '',
`language_id` int(11) NOT NULL COMMENT '',
`title` varchar(64) NOT NULL COMMENT '',
`description` text NOT NULL COMMENT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'openant电商-信息描述';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢
![](https://www.phalapi.net/images/yesyesapi_20201002215757_ca722749ea8df85f0417eea1b17d61a7.png)
![](/images/yesyesapi_20201231171707_49d9ed5bfb03db3fb57ff68ad791b361.jpg)