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
what are the authentication modes in sql server? : Sql dba
explain advantages of innodb over myisam. : Sql dba
What is a dynamic query?
What is difference between cursor and trigger?
how to drop an existing view in mysql? : Sql dba
What is the difference between row level and statement level trigger?
Explain mutating table error.
What is null in pl/sql?
What is embedded sql in db2?
what is meant by nl2br()? : Sql dba
What is oracle and pl sql?
Why should I use postgresql?
Can we call a function containing dml statements in a select query?
Is sql a backend?
how to use myisamchk to check or repair myisam tables? : Sql dba