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 difference between primary key and unique key? : Sql dba
What is sql entity?
What is pivot table in sql?
what is user defined functions? : Sql dba
What do you mean by “trigger” in sql?
What are dml commands?
What are the commands used in sql?
What is blind sql injection?
Can instead of triggers be used to fire once for each statement on a view?
Explain the advantages and disadvantages of stored procedure?
Why do we use partitions in sql?
What are the built in functions of sql?
Can we change the table name in sql?
What is inner join in sql?
Is it possible for a table to have more than one foreign key?