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 are the disadvantages of mysql? : Sql dba
How can I speed up sql query?
What is rollback?
What is oracle sql called?
what does the t-sql command ident_incr does? : Transact sql
Explain the difference between 'between' & 'and' operators in sql
What is sql resultset?
Is sql pronounced sequel or sql?
How to avoid using cursors?
Is ms sql traffic encrypted?
Is it important to partition hard disk?
Why we use join in sql?
Why do we need unique key in a table?
what is a database transaction? : Sql dba
What are two statement types in sql?