how will u get 1 and 3rd and 5th records in table what is
the query in oracle please help me
Answers were Sorted based on User's Feedback
Answer / sandipana
select rownum as rank,emp_id,sal from(select
lastname,salary from employees orderby salary desc)
where rownum IN(1,3,5);
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / priyank
select * from (select rownum rn,emp.* from emp) where mod
(rn,2)=1;
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / millar
ie.
select column from table_name where mod(primary_key_column,2)=1;
select employee_id from employees where mod(employee_id,2)=1
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / jhansi
It displays odd rows
select * from emp where (rowid,0) in(select rowid,mod
(rownum,2) from emp);
Is This Answer Correct ? | 0 Yes | 2 No |
Answer / udaya
SELECT * FROM TABLE_NAME WHERE ROWNUM=1 AND ROWNUM=3 AND
ROENUM=5
Is This Answer Correct ? | 5 Yes | 32 No |
How informatica process data means how informatica works?
if we have certain records,if i need to get 5 th rec for the first time to the target,when i run it for next time,i need to get 6th rec...like that it should process.what wil be the procedure to achieve it??
what is pre and post sql and what is diff between source presql and target pre sql
What is the difference between source qualifier transformations source filter to filter transformation?
Can we have a Mapping without a Source Qualifier?
How to generate a single mapping for both the historical and incremental load.
How to fasten loading of 100 million distinct records in informatica? (Initially they are loaded into target without using any transformation, taking 2 hours)
in staging we are merging the data and remove the inconsistants data that type of situation what u will done and type of functions u can use
if i have a delimited file as source so how can we seperate this file into three diff targets?
Where do you create/define mapping parameter and mapping variable?
How to improve the performance of a session using sorter transformation?
What is a taget load order?