MySQL数据库表结构设计
第 1-11 条, 共 11 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
school | int(11) | 是 | 学校id | 无索引 | ||
campus | int(11) | 是 | 校区id | 无索引 | ||
date | date | 是 | 记录日期 | 无索引 | ||
expenditure | decimal(10,0) | 是 | 支出 | 无索引 | ||
expenditure_reason | varchar(255) | 是 | 支出原因 | 无索引 | ||
income | decimal(10,0) | 是 | 收入 | 无索引 | ||
source_of_income | varchar(255) | 是 | 收入来源 | 无索引 | ||
hander_person | varchar(50) | 是 | 经手人 | 无索引 | ||
funds_leader | varchar(50) | 是 | 负责人 | 无索引 | ||
difference | decimal(10,0) | 是 | 收入与支出加起来 | 无索引 | ||
surplus | decimal(10,0) | 是 | 剩余会费 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:社团组织经费记录表:https://open.yesapi.cn/tablelist/yesapi_organize_dues.html
-- 数据库大全:社团组织经费记录表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_organize_dues` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`school` int(11) NULL COMMENT '学校id',
`campus` int(11) NULL COMMENT '校区id',
`date` date NULL COMMENT '记录日期',
`expenditure` decimal(10,0) NULL COMMENT '支出',
`expenditure_reason` varchar(255) NULL COMMENT '支出原因',
`income` decimal(10,0) NULL COMMENT '收入',
`source_of_income` varchar(255) NULL COMMENT '收入来源',
`hander_person` varchar(50) NULL COMMENT '经手人',
`funds_leader` varchar(50) NULL COMMENT '负责人',
`difference` decimal(10,0) NULL COMMENT '收入与支出加起来',
`surplus` decimal(10,0) NULL COMMENT '剩余会费',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '社团组织经费记录表';
复制后,到数据库执行,即可创建此数据库表。