Notice
Recent Posts
Recent Comments
Link
«   2024/11   »
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 29 30
Tags
more
Archives
Today
Total
관리 메뉴

고마구의 개발 블로그

240705 11주차 금요일 - 미니 프로젝트 쇼핑몰 제작 02 본문

KDT풀스택과정 공부

240705 11주차 금요일 - 미니 프로젝트 쇼핑몰 제작 02

고마구 2024. 7. 5. 10:03

jdbc07_shoppingmall.zip
0.43MB
UploadTest.java
0.00MB

 

데이터베이스 테이블

 

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 ship(
order_number number,
name nvarchar2(100),
shipdate date,
country nvarchar2(100),
post_number number,
address nvarchar2(100),
phone number,
order_password nvarchar2(100)
)

create table order_history(
id nvarchar2(100),
order_number number,
pname nvarchar2(100),
price number,
count number
)
commit;