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 are ddl statements in mysql? : Sql dba

0 Answers  


What does where 1/2 mean in sql?

0 Answers  


What is plpgsql language?

0 Answers  


Is sql a backend?

0 Answers  


What is mdb stand for?

0 Answers  






how u can find the n row from a table?

19 Answers   Tech Mahindra,


what is a foreign key ? : Sql dba

0 Answers  


What is assignment operator in pl sql?

0 Answers  


What is having clause in sql?

0 Answers  


How to take user input in pl sql?

0 Answers  


How is a process of pl/sql compiled?

0 Answers  


What is acid property in a database?

0 Answers  


Categories