what is the output of select * from emp where null=null &
select * from emp where 1=1
Answer Posted / samir kumar sahoo
select*from emp where null=null;
this command will not return any record bcoz the
condition null=null false as two null values are not equal.
select*from emp where 1=1;
will return all the records present in the table emp as
the condition 1=1 is always true.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Can we use bind variables in oracle stored procedure?
What is max rowid in oracle?
What is the implicit cursor in oracle?
Can we write dml statement in function in oracle?
How do I recompile a procedure in oracle?
What is a table index in oracle?
I have a database backup file in .db (ext) form how to conver it into .dmp (ext.) for oracle database
What is a schema in oracle?
what is Single Byte Overhead...?
How are extents allocated to a segment?
What is merge statement used for?
How to create a table in a specific tablespace?
Difference between pre-select and pre-query
In not less than 100 words what's the main difference between Rolap and Molap in ORACLE ?
What is a private synonym?