1 Star 0 Fork 77

LittleRain/FitnessReservation

forked from yupsh/FitnessReservation 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
sql.sql 1.20 KB
一键复制 编辑 原始数据 按行查看 历史
yupsh 提交于 2021-11-01 06:56 . 第一次提交
create table ServiceType(
id number(9) primary key,
icon varchar2(75) not null,
title varchar2(20) not null
)
select id, icon, title from servicetype
create table Coach (
coach_id number(9) primary key,
company varchar2(50),
photo varchar2(75),
avatar varchar2(75),
nickname varchar(50),
price number(7,2),
message varchar(300),
distance varchar2(20)
)
select coach_id, company, photo, avatar, nickname, price, message, distance from coach
create table Service (
service_id number(9) primary key,
subject varchar2(75),
photo varchar2(100),
coverpath varchar2(100),
price number(7,2),
message varchar2(150),
recommend varchar2(500),
detail varchar2(800),
coatch_id number(9) references coach(coach_id),
serviceType_id number(9) references serviceType(id)
)
select service_id, subject, photo, coverpath, price, message, recommend, detail, coatch_id, servicetype_id
from service
create table carousels (
id number(9) primary key,
icon varchar(75) not null,
service_id number(9) references service(service_id)
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/zhbchn/fitness-reservation.git
git@gitee.com:zhbchn/fitness-reservation.git
zhbchn
fitness-reservation
FitnessReservation
master

搜索帮助