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 is a clob in sql?
What is the difference between the conventional and direct path loads? : aql loader
What company owns postgresql?
Can you join a table to itself?
How do you write a subquery?
How does sql*loader handles newline characters in a record? : aql loader
List the ways to get the count of records in a table?
Can a table have no primary key?
in oracle 10g sw after compiling procedure how to pass parameter values ,if we (v_empid out number)how to give empid after successful compilation program.This site exact suitable for 10g with respect to question & answer same format , im trying sql browser & sql command prompt using exec procedure name & respective parameters.
Can we create foreign key without primary key?
What are triggers in sql?
Is there a pl/sql pragma similar to deterministic, but for the scope of one single sql select?
What does count (*) mean?
What is scalar function?
What does count (*) do in sql?