Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Index on Year of date field

Index on Year of date field

From: Stephan Schaefer <stephan.schaefer_at_camline.com>
Date: 1998/03/03
Message-ID: <34FBDBEC.63A1543C@camline.com>#1/1

I have a table with an index on the date field. And I have a view created by:
  create view myview
  as select col1,to_char(date_col,'YYYY') year   from mytable ;

The explain plan of the statement
  select *
  from myview
  where year = '1997';
shows me a full table scan.

Can I create an index on the date field so that selecting by year that index is used?

Stephan Schaefer
stesch_at_camline.com Received on Tue Mar 03 1998 - 00:00:00 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US