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 / ajit nayak
Delete from <tab_name>
where id is null;
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
what is the use of set statement in tsql? : Transact sql
How do I find duplicates in the same column?
Can we write ddl statements in functions?
How can we debug in PL/SQL?
What does dml mean?
Can we update views in sql?
What is assignment operator in pl sql?
What is the difference between Union and Union all. Which is faster.
Is left join same as join?
What is range partitioning?
What is loop in pl sql?
Explain the insert into statements in sql?
What is a dynamic query?
What does where 1 1 mean in sql?
give the syntax of grant and revoke commands? : Sql dba