write a query to remove null following table are
id name
101 dinesh
null jyothi
null bharathi
102 suresh
null shilpha
103 prakesh
null suma
i want the output format like
id name
101 dinesh
102 suresh
103 prakesh
Answer Posted / kart
select * from table where id is not null;
| Is This Answer Correct ? | 17 Yes | 3 No |
Post New Answer View All Answers
Is primary key an index?
Can pl sql procedure have a return statement?
what are the features and advantages of object-oriented programming? : Sql dba
Explain the working of primary key?
What is the difference between instead of trigger and after trigger?
What is a heap in sql?
How do I know if I have sql express or standard?
What is row_number () in sql?
What is meant by <> in sql?
how to select first 5 records from a table? : Sql dba
What is difference between table and view?
What is a .db file?
Can we insert data into view?
What are sql*plus environment variables?
Is sql procedural language?