GeekArticles
FAQ
Oracle FAQ
FAQ
Oracle FAQReferencing previous rows
Lets say i have a table:
create table t ( a int, b date, c varchar2(30) );
with this data in it:
insert into t values ( 1, to_date( '01-jan-2004'), 'hello' );
insert into t values ( 2, to_date( '15-jan-2004'), 'world' );
insert into t v...
Sponsored Links
Read Next: Surrogate versus Natural Keys
Related Topics
Subscribe via RSS
Oracle FAQ
- Synchronize data from remote location
- Oracle Fundamentals
- How to connect SQLPlus without tnsnames.ora
- Best Practices for App Server Keep Alive
- bind variables in triggers
- how to avoid outer joins
- One 900 column table versus ten 90 column tables.
- Does select generate undo ?
- Performance Question
- Help analyze statspack report
