Create Table TB_Student( [idx] int not null identity(1,1), [name] nvarchar(10), [class] tinyint not null default(0) ) 간단한 이름과 반을 담아 둘 수 있는 테이블이다. 정말 간단히 Create Table = 테이블을 만들겠다. TB_Student라는 이름의 테이블을, 이테이블들의 컬럼은 괄호 안에있다. 라고 생각 하면된다. 첫번째 컬럼부터 설명하면 [idx] int not null identity(1,1) 테이블에 아이디 열을 생성하기 위해 idx라는 컬럼을 int로 선언하고 identity(1,1)을 넣어준다. identity(1,1)란 1씩 자동증가함을 의미한다. [name] nvarchar(10) [name..