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 / dipti
The only option I feel is
SELECT * FROM TABLE
WHERE COL_NAME IS NOT NULL
will return the non null values which I think is asked for
this question.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
How do you define a foreign key?
How delete all data from table in sql?
How do I run a pl sql program?
Is drop table faster than truncate?
What is the difference between sql, mysql and sql server?
what is the syntax for using sql_variant_property? : Transact sql
How to return multiple rows from the stored procedure?
How can you load microsoft excel data into oracle? : aql loader
What are different types of sql?
Why we use stored procedure instead of query?
What are actual parameters and formal parameters?
Explain what is table in a database?
Can you have a foreign key without a primary key?
What steps server process has to take to execute an update statement?
Can we enter data in a table in design view?