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
What is coalesce in sql?
How many commands are there in sql?
What is the difference between sql and isql*plus?
Can 2 queries be executed simultaneously in a distributed database system?
explain advantages of innodb over myisam. : Sql dba
If i can use sys.check_constraints to display my constraints from my database using sql server 2005, how can i display then if i am using sql server 2000????
How many times can we commit in a loop?
What is compound trigger?
How does a trigger work?
what is view? : Sql dba
Why is a trigger used?
What is difference between rank () row_number () and dense_rank () in sql?
how to use regular expression in pattern match conditions? : Sql dba
What is the difference between join and natural join?
What is the difference between local variables and global variables?