ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • 쇼핑몰
    업무 2011. 7. 4. 00:28
    온라인 제품 카탈로그 // 상품?

    쇼핑 바구니

    결제 페이지


    create table goods
    (
    g_code varchar(20) not null,
    g_part varchar(10) not null,
    g_name varchar(20) not null,
    g_maker varchar(20) not null,
    g_origin_price int not null,
    g_sellprice int not null,
    g_updateday varchar(30) not null,
    g_image varchar(20) null,
    g_content text not null
    )

    go

    create table imsi_buy
    (
    imsi_memid varchar(20) not null,
    imsi_goodscode varchar(20) not null,
    imsi_ea smallint
    )

    go

    create table buy
    (
    b_code varchar(30) not null,
    c_code varchar(30) not null,
    b_date varchar(20) not null,
    b_summary text null,
    b_totalprice int,
    b_bank varchar(10) not null,
    )

    go

    create table customer
    (
    c_code varchar(30) not null,
    c_name varchar(10) not null,
    c_address varchar(50) not null,
    c_tel varchar(20) not null
    )

    go


Designed by Tistory.