I have one select:
select * from table1 where col1=10;
and another select:
select * from table1 where col1=11;
Sql parser parses them as different sqls.. I want to make SQL PARSER parse the statement once and just change the parameter in the where clause..Can I do that? Do have any idea ? please share it with me.. thanks a lot.
P.S: I am selecting:
select * from v$sql
where parsing_user_id=55 (my user id)
and see that new row is inserted when i run first query and another row is inserted when i run second query.If i run first or second query one more time now new row is inserted(means that sql parser doesn't parse it once more)