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
How do you truncate?
What is sql table?
what are the disadvantages of mysql? : Sql dba
What are secondary keys?
How delete all records from table in sql?
what is view? : Sql dba
Can a trigger call a stored procedure?
What is sql stand for?
difference between anonymous blocks and sub-programs.
Is sql sequential or random?
What is materialized view in sql?
What are the properties of a transaction?
How do I get sql certification?
What is the difference between left outer join and left join?
What is difference between sql and mysql?