I want to use rownum(oracle) like function to return a
running value like serial no. in Access Query. Any help
please.
No, because Access tables do not have Rownums. There simply is no such
construct.
You'll need to use a Subquery to count the number of records before
the current record. If you need line numbers on a Report, you can set
the Control Source of a textbox to 1 and set its RunningSum property
to True; if you want a sequential Custom Counter you can use VBA code
in a Form's BeforeInsert event to find the largest current value and
increment by 1 - but there is no Rownum.