how to get required data from oracle
source is like this
ram_05_seetha
lax_05_viswa
bamr05frummy
run_01_away
sw_sas_trim
i want my target data like
ram_05_seetha
lax_05_viswa
to get data using %_05_%
but it will give
ram_05_seetha
lax_05_viswa
bamr05frummy
how can i get my target data?
Answer Posted / mukesh
select source_field from
(select rownum rn,source_field from source_data
) where rn In(1,2)
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
What is oracle sid?
What is a subquery?
What is a initialization parameter file in oracle?
Point out the difference between user tables and data dictionary?
What are the major difference between truncate and delete?
Describe the types of sub query?
How to find the duplicate rows count from employees table in oracle?
How to retrieve values from data fields in record variables?
What is the difference between online and offline backups?
Can we write insert statement in function in oracle?
What to do if dba lost the system password?
How to convert raw data type into text in oracle? Explain
How many anonymous blocks can be defined?
How to define an explicit cursor in oracle?
How to define a data field as not null?