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 / srinu
Hi Ramkrish,
select *from k;
SNO
-----
1
2
3
3
4
9 rows selected
select sno from k where sno is not null;
SNO
-----
1
2
3
3
4
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
List the different type of joins?
what is a record in a database ? : Sql dba
Can we use two order by clause in query?
What is sqlca in db2?
What are user defined functions?
What is sql basics?
How can you save or place your msg in a table?
What is the use of sqlerrd 3?
Show the two pl/sql cursor exceptions.
What are the different dml commands in sql?
what are the different type of normalization? : Sql dba
Is big data nosql?
What is latest version of sql?
What are secondary keys?
Is sql a case sensitive language?