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
Which sql statement is used to return only different values?
Can we write dml inside a function in sql server?
Why is theta join required?
How many tables can a sql database have?
What is the difference between cluster and non-cluster index?
What is microsoft t sql?
Mention what problem one might face while writing log information to a data-base table in pl/sql?
Why do we use set serveroutput on?
What does subquery mean in sql?
Can you do multiple joins in sql?
What is the need of merge statement?
What is substitution variable?
What are sql ddl commands?
How to avoid using cursors?
What is difference between my sql and sql?