제품 테이블 PRODUCT

(DB테이블 제품에서 넘어옴)
DB테이블 Products, Product
Product 테이블, 제품 테이블, 상품 테이블

1 예시: DB2 샘플[1][ | ]

컬럼명 설명 자료형 널가능 비고
PID 제품ID VARCHAR(10) NOT NULL 주키
NAME 제품명 VARCHAR(128)
PRICE 제품가격 DECIMAL(30,2)
PROMOPRICE 프로모션가격 DECIMAL(30,2)
PROMOSTART 프로모션시작일 DATE
PROMOEND 프로모션종료일 DATE
DESCRIPTION 제품설명 XML

2 예시: Northwind DB[2][ | ]

컬럼명 설명 자료형 널가능
ProductID 제품ID int
ProductName 제품명 nvarchar(40)
SupplierID 공급자ID int Yes
CategoryID 유형ID int Yes
QuantityPerUnit 단위량 nvarchar(20) Yes
UnitPrice 단가 money Yes
UnitsInStock 재고단위 smallint Yes
UnitsOnOrder 주문단위 smallint Yes
ReorderLevel 재주문레벨 smallint Yes
Discontinued 중단여부 bit

3 예시 2: AdventureWorks[3][ | ]

컬럼명 자료형 널가능 설명
ProductID int (주키) 제품ID
Name Name (user-defined type) / nvarchar(50) 제품명
ProductNumber nvarchar(25) 제품번호
MakeFlag Flag (user-defined type) / bit 0 = Product is purchased. / 1 = Product is manufactured in-house.
FinishedGoodsFlag Flag (user-defined type) / bit 0 = Product is not a salable item. / 1 = Product is salable.
Color nvarchar(15) O 제품색상
SafetyStockLevel smallint 최소 재고량
ReorderPoint smallint Inventory level that triggers a purchase order or work order.
StandardCost money 표준비용
ListPrice money 판매가격
Size nvarchar(5) O 제품크기
SizeUnitMeasureCode nchar(3) O 제품크기의 단위
WeightUnitMeasureCode nchar(3) O 제품무게의 단위
Weight decimal (8,2) O 제품무게
DaysToManufacture int Number of days required to manufacture the product.
ProductLine nchar(2) O R = Road / M = Mountain / T = Touring / S = Standard
Class nchar(2) O H = High / M = Medium / L = Low
Style nchar(2) O W = Women's / M = Men's / U = Universal
ProductSubcategoryID smallint O Product is a member of this product subcategory. Foreign key to ProductSubCategory.ProductSubCategoryID.
ProductModelID int O 제품모델ID
SellStartDate datetime 판매시작일자
SellEndDate datetime O 판매종료일자
DiscontinuedDate datetime O 단종일자
rowguid uniqueidentifier ROWGUIDCOL GUID
ModifiedDate datetime 최근 업데이트 일시

4 같이 보기[ | ]

5 주석[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}