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

MySQL建表SQL语句

数据库结构:儿童学习-家长通知:https://open.yesapi.cn/tablelist/yesapi_futurestar_message_board.html


-- 数据库大全:儿童学习-家长通知
-- 来源:YesApi.cn
CREATE TABLE `yesapi_futurestar_message_board` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `teacher_id` int(11) NULL COMMENT '',
    `student_id` int(11) NULL COMMENT '',
    `classid` int(11) NULL COMMENT '',
    `imageid` longblob NULL COMMENT '',
    `username` char(100) NULL COMMENT '',
    `parenttime` int(11) NULL COMMENT '家长发送时间',
    `wordid` int(11) NULL COMMENT '',
    `recevice` varchar(100) NULL COMMENT '',
    `parentcontent` text NULL COMMENT '家长发送消息内容',
    `teachercontent` text NULL COMMENT '教师发送内容',
    `teachertime` int(11) NULL COMMENT '教师发送内容时间',
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '儿童学习-家长通知';

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


MySQL数据库表结构设计

第 1-11 条, 共 11 条.
字段名称字段类型字段默认值是否允许为空字段描述索引字段数据示例
teacher_idint(11)无索引
student_idint(11)无索引
classidint(11)无索引
imageidlongblob无索引
usernamechar(100)无索引
parenttimeint(11)家长发送时间无索引
wordidint(11)无索引
recevicevarchar(100)无索引
parentcontenttext家长发送消息内容无索引
teachercontenttext教师发送内容无索引
teachertimeint(11)教师发送内容时间无索引

猜你喜欢

MySQL数据库设计 儿童学习-管理员

MySQL数据库设计 儿童学习-城市

MySQL数据库设计 儿童学习-班级

MySQL数据库设计 儿童学习-班级空间

MySQL数据库设计 儿童学习-作业

MySQL数据库设计 儿童学习-个人空间

MySQL数据库设计 儿童学习-省份

MySQL数据库设计 儿童学习-资源

MySQL数据库设计 儿童学习-学校

MySQL数据库设计 儿童学习-学生

MySQL数据库设计 儿童学习-课程

MySQL数据库设计 儿童学习-教师

MySQL数据库设计 儿童益智答题-题目

MySQL数据库设计 儿童益智答题-题目类型

MySQL数据库设计 儿童益智答题-用户



回到顶部 ↑