mssql에서 index된 view 생성하기 풀텍스트서치처럼 인덱스된 뷰가 필요할 때 다음과 같이 생성하자. Create view dbo.ViewName with schemabinding as select column from tableName create unique clustered index idx_view_tableName on dbo.ViewName(column) 개발이야기/Database 2024.01.15