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

Answers were Sorted based on User's Feedback



write a query to remove null following table are id name 101 dinesh null jyothi null bha..

Answer / kart

select * from table where id is not null;

Is This Answer Correct ?    17 Yes 3 No

write a query to remove null following table are id name 101 dinesh null jyothi null bha..

Answer / sumit

select id,name from table where id is not null;

Is This Answer Correct ?    4 Yes 0 No

write a query to remove null following table are id name 101 dinesh null jyothi null bha..

Answer / ajit nayak

Delete from <tab_name>
where id is null;

Is This Answer Correct ?    4 Yes 0 No

Post New Answer

More SQL PLSQL Interview Questions

What is trigger types of trigger?

0 Answers  


How do I remove sql developer from windows 10?

0 Answers  


What is difference between pls_integer and integer?

0 Answers  


Is pl sql useful?

0 Answers  


what is sql optimization

1 Answers   Fidelity,






What is a record in a database?

0 Answers  


What are reports usually used for?

0 Answers  


How can the performance of a trigger be improved?

0 Answers  


how tsql statements can be written and submitted to the database engine? : Transact sql

0 Answers  


how many tupples can insert in 1 second in sql

1 Answers  


Types of locks in database ?

8 Answers   HCL, TCS, Tieto,


What is pragma in sql?

0 Answers  


Categories