--[1] 예시데이터입력: 자동증가값체크 Insert Into Categories Values('공지'); Insert Categories Values('뉴스'); Select *From Categories Order By CategoryID Asc --[2] 기본키제약조건 Insert Into FrontBoards Values('준철이블로그','http://godffs.tistory.com','_blank', Default, 1); Insert Into FrontBoards(Title, Url, Target, CategoryID) Values('네이버', 'http://www.naver.com', '_self', 2); Select *From FrontBoards --[3] 널값체크 --Insert I..
--[0] tempdb 사용 Use tempdb Go --[1] 실습용테이블생성: 간단한줄공지사항(뉴스) 게시판 --글번호, 카테고리, 제목, 링크, 타겟, 작성일 Create Table Categories ( CategoryID Int Identity(1,1) --[1] 자동증가값: 1 부터1씩증가 Primary Key, --[2] 기본키(고유한식별자(Identifier)) : 레코드를구분하는유일한값 ,Primary Key는Not Null 포함되어있다. CategoryName --[!] 카테고리이름 VarChar(25) Not Null --[3] Null값제약: Not Null : 반드시값입력, Null 허용 ) Go Create Table dbo.FrontBoards ( ItemID --[!]일련번호..