following scenario empsal table i want who exist one lakshs
sal above monthwise?
`
empsal
empid monthyear sal
1 jan2008 1000
2 march2009 50000
3 april2009 4000
4 feb2009 100000
5 jul2009 600000
6 dec 2008 90000
Answers were Sorted based on User's Feedback
Answer / gd
select empid,monthyear from empsal where sal>100000;
| Is This Answer Correct ? | 11 Yes | 2 No |
Answer / sweta kedia
Select EMPID from EMPSAL Where MONTHYEAR IN(SELECT monthyear
from empsal
Group By monthyear
where
sal> 100000)
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / sateesh
select * from empsal GROUPBY ‘monthyear’
HAVING sal>=100000.
| Is This Answer Correct ? | 0 Yes | 4 No |
Answer / animesh
Select EMPID from EMPSAl
Group By monthyear
where
sal> 100000
| Is This Answer Correct ? | 2 Yes | 8 No |
What is the fact table?
What are the challenges of Dataware housing in the future?
What is difference between partioning of relatonal target and partitioning of file targets?
Which transformation should we use to normalize the COBOL and relational sources?
4 Answers DELL, IBM, Lehman Brothers,
There are n numbers of flatfile of exactly same format are placed in a folder .Can we load these flatfile's data one by one to a single relational table by a single session??
why we use datawarehouse
Explain about Informatica server process that how it works relates to mapping variables?
Tell me can we override a native sql query within informatica? Where do we do it? How do we do it?
What is the sql query overwrite in source qualifier in informatica
List the transformation in informatica.
suppose in my source flatfile i have 10000 records in that some of master table records missed table records missed then what will u do
What is a filter transformation?