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 difference between stored function and application function?
What is cursor explain with example?
How do you select unique values in sql?
What is a ddl command?
explain the advantages and disadvantages of stored procedure? : Sql dba
What is posting?
Why are indexes and views important to an organization?
What is the best sql course?
What is the use of nvl function?
What is pl sql variable?
What is the source code of a program?
What is right join in sql?
What is an invalid partition table?
can a stored procedure call itself or recursive stored procedure? : Sql dba
Why do we use partitions in sql?