Skip to Main Content

SQL Developer

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

SELECT * with LIMIT

969643Oct 25 2012 — edited Oct 26 2012
Trying to follow the example :
SELECT select_list
FROM table_expression
[LIMIT { number | ALL }] [OFFSET number]

SELECT *
FROM WGN3EVENTAUDIT B,
WGN3EVENT A
WHERE A.EVENTUID = B.EVENTUID
AND A.EVENTTIMESTAMP = B.EVENTTIMESTAMP
LIMIT 10 | ALL OFFSET 10 ;

Error at Line: 6 Column: 1

Not too sure how to correct it
This post has been answered by Marwim on Oct 26 2012
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Nov 23 2012
Added on Oct 25 2012
11 comments
2,868 views