Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.tools -> Re: first row with sql?
> With MSaccess there is a 'Group by' function FIRST which select only
> the first row of each group like SUM,AVG etc...
>
> how to do that with Oracle SQL?
Oracle supports the full SQL language syntax including the following clauses to a select statement:
SELECT
FROM
WHERE
GROUP BY
HAVING
ORDER BY
But be aware of one thing ... Access SQL is not real SQL. You need to
read the manual or buy and read a book if you want to work with a real
RDBMS.
Daniel A. Morgan
Received on Thu Mar 29 2001 - 22:25:03 CST
![]() |
![]() |