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


Please Help Members By Posting Answers For Below Questions

Can triggers stop a dml statement from executing on a table?

612


what is a relationship and what are they? : Sql dba

550


Explain the order of sql statement execution?

605


How to call a javascript function from pl sql?

559


How many joins in sql?

545






What is user in sql?

573


Is it possible to link two groups inside a cross products after the cross products group has been created?

587


Which one is better subquery or joins?

551


What is acid property in a database?

580


How to select 10 records from a table?

641


How consistent is the view of the data between and within multiple sessions, transactions or statements ?

1704


What is sql stand for?

571


Define sql delete statement.

556


Explain constraints in sql?

569


what is online transaction processing (oltp)? : Sql dba

523