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 |
how to work with mapplet designer in informatica?
What is workflow? What are the components of the workflow manager?
What is the difference between view and materialised view?
how can we run workflow with pmcmd?
Difference between task flow and linear task flow
What are your source in project and how you import in informatica? How can i explain abt this?
1 Answers Accenture, Unisoft Infotech,
After draging the ports of three sources(sql server,oracle,informix) to a single source qualifier, can you map these three ports directly to target?
Implementation methodology
In SCD type 2 if we had select date range. then suppose we had inserted today's date(eq. date is 30 aug 2010) then start date will be today's date(30 aug 2010) what will be the end date,we cant leave it blank?
What is A complex mapping?
Hello Everyone,i have one question on sequence generator.i have two targets and the records comes from the source will place in the targets like 1-10 rec in target1 and 11-20 rec in target2,21-30 rec in target1...etc so any one can help me? plz..Thanq in adv.
write a query for how to eliminate the duplicate rows without using distinct?