"DB테이블 제품"의 두 판 사이의 차이

4번째 줄: 4번째 줄:
==예시 1: Northwind DB==
==예시 1: Northwind DB==
{| class='wikitable'
{| class='wikitable'
! 컬럼명 !! 설명 !! 자료형
! 컬럼명 !! 설명 !! 자료형 !! 널가능
|-
|-
| ProductID || 제품ID || int
| ProductID || 제품ID || int ||
|-
|-
| ProductName || 제품명 || nvarchar(40)
| ProductName || 제품명 || nvarchar(40) ||
|-
|-
| SupplierID || 공급자ID || int
| SupplierID || 공급자ID || int || Yes
|-
|-
| CategoryID || 유형ID || int
| CategoryID || 유형ID || int || Yes
|-
|-
| QuantityPerUnit || 단위량 || nvarchar(20)
| QuantityPerUnit || 단위량 || nvarchar(20) || Yes
|-
|-
| UnitPrice || 단가 || money
| UnitPrice || 단가 || money || Yes
|-
|-
| UnitsInStock || 재고단위 || smallint
| UnitsInStock || 재고단위 || smallint || Yes
|-
|-
| UnitsOnOrder || 주문단위 || smallint
| UnitsOnOrder || 주문단위 || smallint || Yes
|-
|-
| ReorderLevel || 재주문레벨 || smallint
| ReorderLevel || 재주문레벨 || smallint || Yes
|-
|-
| Discontinued || 중단여부 || bit
| Discontinued || 중단여부 || bit ||
|}
|}



2014년 10월 15일 (수) 01:49 판

DB테이블 제품
DB테이블 Products

1 예시 1: Northwind DB

컬럼명 설명 자료형 널가능
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

2 같이 보기

3 참고 자료

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