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 / sumit
select id,name from table where id is not null;
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What is sql injection vulnerability?
Define SQL and state the differences between SQL and other conventional programming Languages?
How to use sql statements in pl/sql?
Can we alter stored procedure?
What is Collation Sensitivity ? What are the various type ?
What is autocommit sql?
Is sql free?
Why left join is used in sql?
How do I create an index in word?
Is it possible to read/write files to-and-from PL/SQL?
Does pdo prevent sql injection?
What are the 3 types of behavioral triggers?
what is the use of double ampersand (&&) in sql queries?
What does := mean in pl sql?
What are user defined functions?