2
SQL Server의 인덱싱 된 뷰
나는 테이블과 인덱스 뷰를 가지고있다. Create table mytable1 (ID int identity(1,1), Name nvarchar(100)) Create table mytable2 (ID int identity(1,1), Name nvarchar(100)) Create view myview with schemabinding as select a.name, b.name from mytable1 a join mytable2 b on a.Id = b.Id 이제 다음 쿼리를 실행하면 select a.name, b.name from mytable1 a …