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 t sql a programming language?
how to do backup entire database? : Transact sql
What is pragma in pl sql?
What is primary key sql?
What is t sql used for?
Why having clause is used in sql?
What is the difference between clustered and non-clustered indexes?
What is the difference between delete and truncate statement in sql?
Name three sql operations that perform a sort.
how to use in conditions? : Sql dba
what is foreign key? : Sql dba
Can a key be both primary and foreign?
What is the sql query to display the current date?
What is %type in sql?
What are the events on which a database trigger can be based?