write a query filter the null value data following source?
name age
john 30
smith null
null 24
sharp 35
i want output
name age
john 30
sharp 35
Answer Posted / ramya
select * from test_1 where name is not null and age is not
null;
| Is This Answer Correct ? | 18 Yes | 2 No |
Post New Answer View All Answers
When a dml statement is executed, in which cursor attributes, the outcome of the statement is saved?
how can we know the number of days between two given dates using mysql? : Sql dba
How do you write an inner join query?
what is query cache in mysql? : Sql dba
What are inner outer left and right joins in sql?
What do you mean by stored procedures? How do we use it?
How to process query result in pl/sql?
how to run 'mysql' commands from a batch file? : Sql dba
Is stored procedure faster than query?
How can we optimize a sql query?
How bulk collect improves performance?
How to fetch alternate records from a table?
What is a database event trigger?
What is break?
Explain the methods used to protect source code of pl/sql.