how to eliminate null values in a column i.e
table vlaues
1 2 3
NULL 3 4
1 5 NULL
i want output like this
1 2 3
3 4
1 5
i dnt want to use nvl is null and i dnt want replace the
NULL value with any value i.e nvl(col,o);
Answer Posted / pankaj
suppose u have table named as emp
emp_id dept_id last_name salary
1 10 N1 10000
2 20 N2 10000
3 N3 12000
4 N4 12000
5 30 N5 15000
NOW IF U WANT TO RETRIEVE THE ROWS WITH ELIMINATING NULL
VALUES.
EX-
SELECT EMP_ID,DEPT_ID,LAST_NAME,SALARY
FROM EMP
WHERE DEPT_ID IS NOT NULL;
SO IN THE OUTPUT NULL VALUES WILL NOT BE RETRIVED MEANS
RECORD FOR EMP_ID 3 AND 4 WILL NOT BE RETRIVED.
REGARDS R
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How do I find duplicates in two columns?
how to shutdown mysql server? : Sql dba
What does where 1 1 mean in sql?
Where do we use pl sql?
what is self join and what is the requirement of self join? : Sql dba
What is indexes?
How do I find sql profiler?
What is column?
What is the difference between Union and Union all. Which is faster.
Can primary key be changed?
what is the difference between a local and a global temporary table? : Sql dba
How do I start sql profiler?
What is bind reference and how can it be created?
What are functions in sql?
what are the disadvantages of mysql? : Sql dba