두 조의 테이블이 조인 된 조인은 이전 조인 레코드를 가져 오는 작업을 수행하는 '조건'을 갖는 내부 조인과 함께 있습니다. 테이블 중 하나에 'rowentrytimestamp'필드가 있습니다.이 필드는 레코드에 대한 행을 입력 할 때의 타임 스탬프입니다.index on rowentrytimestamp
예 검색어 :
Select table1.a, table1.b, table2.c, table2.d, table2.e, table1.f,table1.g
from table1 inner join
table2
on table1.a = table2.a
where table2.c in (x, y, z) and table2.rowentrytimestamp >= DateAdd(mm,-1,getDate())
빠른 실행을 위해이 rowentrytimestamp에 인덱스를 추가 할 수있는 좋은 선택이있다. 타임 스탬프에 인덱스를 추가 할 때 고려해야 할 것이 있습니까?
호환되지 않는 데이터베이스 태그를 제거했습니다. –