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
What are the roles of dba?
What are the uses of a database trigger?
How to empty your oracle recycle bin?
what is insert all statement in sql
What privilege is needed for a user to connect to oracle server?
In what script is snap$ created? In what script is the scott/tiger schema created?
Can we convert a date to char in oracle and if so, what would be the syntax?
What is user managed backup in Oracle?
Why does for update in oracle 8 cause an ora-01002 error?
Explain a private synonyms?
If a parameter is used in a query without being previously defined, what diff. exist betw. report 2.0 and 2.5 when the query is applied ?
Explain what are the advantages of views?
Explain overloading. Can functions be overloaded?
What is set operator oracle?
 What are the oracle DML commands possible through an update strategy?