--3개테이블조인 --카테고리명, 상품명, 판매가, 코멘트 --ansi 오라클에서사용하는표준 Select c.CategoryName, p.ModelName, p.SellPrice, r.Comment From Categories c Join Products p On c.CategoryID = p.CategoryID Join Reviews r On p.ProductID = r.ReviewID Go --Sql전용문법 select c.CategoryName, p.ModelName, p.SellPrice, r.Comment From Categories c, Products p, Reviews r Where c.CategoryID = p.CategoryID And p.ProductID = r.ProductID Go
카테고리 상품 테이블을 설계 후 Join Lift 조인문을 이용한 예제입니다. --[tempdb] --조인(Join) : Left 조인 --카테고리테이블설계 Create Table dbo.Categories ( CategoryID Int Identity(1, 1) Not Null Primary Key, --카테고리번호 CategoryName VarChar(25) Not Null ) Go Insert Categories Values('가전') go Insert Categories Values('컴퓨터') go Insert Categories Values('서적') go --상품테이블설계 Create Table dbo.Products ( ProductID Int Identity(1, 1) Not Null P..