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
Which are sql * plus commands?
Why do we use procedures in pl sql?
Name the operator which is used in the query for pattern matching?
How to select random rows from a table?
What is pl/sql table? Why is it used?
discuss about myisam index statistics collection. : Sql dba
Where is pl sql used?
how can we destroy the cookie? : Sql dba
What is the difference between view and stored procedure?
what is a database? : Sql dba
Is time a data type in sql?
What is Difference Between Unique and Primary Key Constraints?
Is it possible to remove child records without removing master table records...the two having pk,fk relationship?
Is natural join and inner join same?
how would you write a query to select all teams that won either 2, 4, 6 or 8 games? : Sql dba