Is there any pseducolumn concept in Teradata like ROWNUM in Oracle or, is there any way to get first 100 rows of a table ?
Thanks.
Is there any pseducolumn concept in Teradata like ROWNUM in Oracle or, is there any way to get first 100 rows of a table ?
Thanks.
There's no ROWNUM
but you can use TOP
:
select top 100 * from tab;