Re: Complex Querys using instances of tables
- From: "Francis" <francis_1750@xxxxxxx>
- Date: 6 Jan 2006 08:48:23 -0800
Thanks again!
And its all working. Btw the access 2003, uses the simple sintax:
<query|table|subquery> AS <instancename> to create instances or to name
subquerys.
So first version in Oracle comes:
SELECT DISTINCT rh.report_name, rh.user_name, rh.report_run_date
FROM report_history AS rh, [SELECT report_name, max(report_run_date) as
maxdate FROM report_history GROUP BY report_name]. AS maxresults
WHERE rh.report_name=maxresults.report_name And
rh.report_run_date=maxresults.maxdate;
.
- References:
- Complex Querys using instances of tables
- From: Francis
- Re: Complex Querys using instances of tables
- From: John Spencer
- Complex Querys using instances of tables
- Prev by Date: Re: Converting Text to Date
- Next by Date: Re: Many answers to one question, link to another query...
- Previous by thread: Re: Complex Querys using instances of tables
- Next by thread: Output Query to Excel
- Index(es):