what is the output of select * from emp where null=null &
select * from emp where 1=1
Answer Posted / anitha
select * from emp where null=null: will not return any rows
in the table since two null values are not always same.
select * from emp where 1=1 : will return all the rows in
the table because 1 is always equal to 1.
| Is This Answer Correct ? | 36 Yes | 1 No |
Post New Answer View All Answers
How to run create database statement?
What is MTTR advisor in Oracle?
What are the uses of linked server and explain it in detail?
Explain an index segment?
What do you mean by merge in oracle and how can we merge two tables?
How to delete a column in an existing table in oracle?
What is rowid and rownum in oracle?
How to connect to a local oracle 10g xe server?
What is the quickest way to fetch the data from a table?
How do I know if oracle client is installed on windows?
Explain oracle’s server parameter file.
What is a initialization parameter file in oracle?
How to use subqueries in the from clause in oracle?
Which is better Oracle or MS SQL? Why?
What is meant by a deadlock situation?