Hi All,
Could anyone please tell if it is wise to create an index on a table just beause of a view. Suppose I have a table table1 and created view VIEW1 on this table as below:
create view VIEW1 as select * from table1 where column1='DATA'
Is is wise to create index on table1 (column1) just beause it's used in the view.
Thanks,
PS