Slow Query in Pipelined Function
92182Jul 22 2004 — edited Jul 23 2004I have written a pipelined function "teamname_split",
when i try to do a select "TEAM_ID","NAME" from table(teamname_split) only need 93 msecs
however when i do the following
select "TEAM_ID","NAME" from table(teamname_split) where name = "everton"
then it need 3 sec, what is the problem ?
why when i added a filter, the result will be so slow?