Query about Data Storage and
Retrieval
Is there any database parameter that we can set, which controls the way data is stored and retrieved for display purpose. Or to put it other way round, When we retrieve the data using select * statement, is the data displayed always in the chronological order ? Context here is: We have a table that contains past 2 months data (say 200 rows - 100 rows loaded on 1st June as May data, 100 for June data loaded on 1st July). Using some DB feature/parameter can we seprate out the recently inserted rows i.e. June data ? PS: there is no date-time stamp related column in the row. Just a blind shot:
When you want to querry data from a table you have to know the structure of the table(i.e the columns in the table) these are what you need to restrict your select. For example if you have a table called urtable has column like name
You can query for data loaded in june this way: select name,address,salary,date_loaded from urtable
You can play around with several this query to achieve your desired result. Austin
Have a Oracle Question
Oracle Books
Oracle Application
Oracle Home
All the site contents are Copyright © www.erpgreat.com
and the content authors. All rights reserved.
|