How to fetch records from a partitioned table?
Answers were Sorted based on User's Feedback
select * from tabe_name partition (partition_name );
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / santosh kumar
SELECT * FROM TABLENAME PARTITION(PMONHTYEAR)
EX:
SELECT * FROM SALARY PARTITION(P0315)
Is This Answer Correct ? | 1 Yes | 0 No |
What are the packages in pl sql?
Is sqlite thread safe?
Can a select statement fire a trigger?
What are different functions in sql?
Does db2 use sql?
How can we connect an Android App to an Oracle database and use the PL/SQL procedural code?
what is meant by tuning and tk proof?
What are the steps you take to tune(performance tuning) the code in plsql?
4 Answers Cap Gemini, Infosys, TCS,
Explain how procedures and functions are called in a PL/SQL block ?
there are .......different types of serializability
What are the methods of filing?
Hello All, Could any well write a query for the following scenario. Account(table name) No Name Amount 1 ABCD 2000.00 2 DEFG -2000.00 3 GHIJ 3000.50 4 JKLM 4000.00 5 MNOP 6000.00 O/p Should be in this format No Name Credit Debit 1 ABCD 2000.00 0 2 DEFG 0 -2000.00 3 GHIJ 3000.50 4 JKLM 0 -4000.00 5 MNOP 6000.00 o could any one give appropriate query for this Thnks in Advance