select query with 'where' clause 'and' operators
Which condition will execute first
select * from table_name
where column_name ='abc'
and rownum >9999
and date_column = '00/00/0000' ( its just an example)
0
Which condition will execute first
select * from table_name
where column_name ='abc'
and rownum >9999
and date_column = '00/00/0000' ( its just an example)