+ 立即免费创建此表 返回数据库大全

MySQL建表SQL语句

数据库结构:医疗纪录-描述:https://open.yesapi.cn/tablelist/yesapi_mrs_concept_description.html


-- 数据库大全:医疗纪录-描述
-- 来源:YesApi.cn
CREATE TABLE `yesapi_mrs_concept_description` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `concept_id` int(11) NULL DEFAULT '0' COMMENT '',
    `description` text NULL COMMENT '',
    `locale` varchar(50) NULL COMMENT '',
    `creator` int(11) NULL DEFAULT '0' COMMENT '',
    `changed_by` int(11) NULL COMMENT '',
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '医疗纪录-描述';

复制后,到数据库执行,即可创建此数据库表。


MySQL数据库表结构设计

第 1-5 条, 共 5 条.
字段名称字段类型字段默认值是否允许为空字段描述索引字段数据示例
concept_idint(11)0无索引0
descriptiontext无索引
localevarchar(50)无索引
creatorint(11)0无索引0
changed_byint(11)无索引

猜你喜欢

MySQL数据库设计 医疗纪录-报告

MySQL数据库设计 医疗纪录-分组映射

MySQL数据库设计 医疗纪录-会员分组

MySQL数据库设计 医疗纪录-obs

MySQL数据库设计 医疗纪录-标签

MySQL数据库设计 医疗纪录-标签映射



回到顶部 ↑