Notice
Recent Posts
Recent Comments
Link
«   2025/02   »
1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28
Tags
more
Archives
Today
Total
관리 메뉴

고마구의 개발 블로그

240707 11주차 일요일 - 미니 프로젝트 쇼핑몰 제작 04 본문

KDT풀스택과정 공부

240707 11주차 일요일 - 미니 프로젝트 쇼핑몰 제작 04

고마구 2024. 7. 8. 00:36

 

work.zip
0.49MB

 

DB 2안

 

create table basket(
id nvarchar2(100),
pcode nvarchar2(100),
pname nvarchar2(100),
price number,
count number
)

create table customer(
id nvarchar2(100),
name nvarchar2(100),
pw nvarchar2(100),
birthday date
)

create table product(
productimage nvarchar2(100),
pcode nvarchar2(100),
pname nvarchar2(100),
price number,
info  nvarchar2(100),
factory  nvarchar2(100),
groups  nvarchar2(100),
inven  number,
state nvarchar2(100)
)

 

create table order_history(
id nvarchar2(100),
order_number nvarchar2(100),
address nvarchar2(100),
phone number,
shipdate date,
order_password nvarchar2(100)
);


create table product_io(
order_number nvarchar2(100),
type nvarchar2(100),
pcode nvarchar2(100),
pname nvarchar2(100),
price number,
count number
);
commit;