# Interview-chicken **Repository Path**: jiangyingbo2518/Interview-chicken ## Basic Information - **Project Name**: Interview-chicken - **Description**: 一个简单的ai面试助手 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2025-05-28 - **Last Updated**: 2025-06-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## SQL ```sql create database interview_ai; use interview_ai; create table user ( user_id int unsigned auto_increment comment '用户主键', nick_name varchar(128) not null default '' comment '用户昵称', phone varchar(11) not null default '' comment '用户手机号', email varchar(128) not null default '' comment '用户邮箱', username varchar(128) not null default '' comment '用户账号', password varchar(128) not null default '' comment '用户密码', gender int not null default 2 comment '用户性别:0女,1男,2保密', age int not null default 0 comment '用户年龄', completed_ques int not null default 0 comment '用户完成题目数量', avatar_url varchar(256) not null default '' comment '用户头像地址', job_interest varchar(256) not null default '' comment '用户求职意向', tech_tack varchar(256) not null default '' comment '用户技术栈', create_time datetime not null default now() comment '创建时间', modify_time datetime not null default now() comment '修改时间', primary key (user_id), unique (username), unique (phone), unique (email) ) comment '用户表'; create table ques_user ( ques_user_id int auto_increment comment '主键', user_id int not null default 0 comment '用户id', ques_desc varchar(1024) not null default '' comment '问题描述', ex_reply varchar(1024) not null default '' comment '示例回答', user_reply varchar(1024) not null default '' comment '用户回答', ques_status int not null default 0 comment '问题状态:0未解决,1已解决', point int not null default 0 comment '问题得分', suggestion varchar(1024) not null default '' comment '建议', create_time datetime not null default now() comment '创建时间', primary key (ques_user_id) ) comment '用户面试题表'; ```