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

MySQL建表SQL语句

数据库结构:智果内容付费-用户表:https://open.yesapi.cn/tablelist/yesapi_zhiguo_ocenter_ucenter_member.html


-- 数据库大全:智果内容付费-用户表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_zhiguo_ocenter_ucenter_member` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `username` char(32) NOT NULL COMMENT '用户名',
    `yesapi_zhiguo_ocenter_ucenter_member_password` char(32) NOT NULL COMMENT '密码',
    `email` char(32) NOT NULL COMMENT '用户邮箱',
    `mobile` char(15) NOT NULL COMMENT '用户手机',
    `reg_time` int(10) NOT NULL DEFAULT '0' COMMENT '注册时间',
    `reg_ip` bigint(20) NOT NULL DEFAULT '0' COMMENT '注册IP',
    `last_login_time` int(10) NOT NULL DEFAULT '0' COMMENT '最后登录时间',
    `last_login_ip` bigint(20) NOT NULL DEFAULT '0' COMMENT '最后登录IP',
    `yesapi_zhiguo_ocenter_ucenter_member_status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '用户状态',
    `yesapi_zhiguo_ocenter_ucenter_member_type` tinyint(4) NOT NULL COMMENT '1为用户名注册,2为邮箱注册,3为手机注册',
    KEY `yesapi_zhiguo_ocenter_ucenter_member_status` (`yesapi_zhiguo_ocenter_ucenter_member_status`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '智果内容付费-用户表';

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


MySQL数据库表结构设计

第 1-10 条, 共 10 条.
字段名称字段类型字段默认值是否允许为空字段描述索引字段数据示例
usernamechar(32)用户名无索引
yesapi_zhiguo_ocenter_ucenter_member_passwordchar(32)密码无索引
emailchar(32)用户邮箱无索引
mobilechar(15)用户手机无索引
reg_timeint(10)0注册时间无索引0
reg_ipbigint(20)0注册IP无索引0
last_login_timeint(10)0最后登录时间无索引0
last_login_ipbigint(20)0最后登录IP无索引0
yesapi_zhiguo_ocenter_ucenter_member_statustinyint(4)0用户状态普通索引0
yesapi_zhiguo_ocenter_ucenter_member_typetinyint(4)1为用户名注册,2为邮箱注册,3为手机注册无索引

猜你喜欢

MySQL数据库设计 智果内容付费-中国省市区乡镇数据表

MySQL数据库设计 智果内容付费-系统行为表

MySQL数据库设计 智果内容付费-

MySQL数据库设计 智果内容付费-行为日志表

MySQL数据库设计 智果内容付费-插件表

MySQL数据库设计 智果内容付费-附件表

MySQL数据库设计 智果内容付费-权限组与分类的对应关系表

MySQL数据库设计 智果内容付费-权限分组

MySQL数据库设计 智果内容付费-权限妥组接入

MySQL数据库设计 智果内容付费-授权规则

MySQL数据库设计 智果内容付费-头像

MySQL数据库设计 智果内容付费-表达式

MySQL数据库设计 智果内容付费-表达式包

MySQL数据库设计 智果内容付费-i表达式

MySQL数据库设计 智果内容付费-i表达式链接

MySQL数据库设计 智果内容付费-频道

MySQL数据库设计 智果内容付费-用户导航

MySQL数据库设计 智果内容付费-登记

MySQL数据库设计 智果内容付费-配置

MySQL数据库设计 智果内容付费-中国省市区乡镇数据表



回到顶部 ↑