write sql query to remove null value following table
id name
101 dinesh
null jyothi
null bharathi
102 suresh
null shilpha
103 prakesh
null suma
i want the output
id name
101 dinesh
102 suresh
103 prakesh
Answer Posted / rama
select id, name from table where id is not null;
| Is This Answer Correct ? | 20 Yes | 1 No |
Post New Answer View All Answers
How can we remove the duplicates from flat file source?
What is the difference between stop and abort in informatica
What is an active transformation?
Can I use same Persistent cache(X.Dat) for 2 sessions running parallely? If it is not possible why?If yes How?
How does the aggregator transformation handle null values?
How can we store previous session logs?
What is the use of transformation?
What do you mean by filter transformation?
How do you load more than 1 max sal in each department through informatica or write sql query in oracle?
Explain pmcmd command usage in informatica
Please let me know how to make encryption and decryption with example?
How many ways a relational source definition can be updated and what are they?
Is stop and abort are same in informatica?
Explain the pipeline partition with real time example?
If i have source as flat file. how can i store the header and trilor into one target and data into one more target. |------>target1(header+trailor) source------ |------>target2(data) can any one please help me