[sql] 테이블의 인덱스 생성일 조회

– 테이블의 인덱스 생성일 조회 SELECT index_name, create_date FROM sys.indexes WHERE object_id = OBJECT_ID(‘테이블명’); ```