Re: Re: [SQL] oracle rownum equivalent?
От
mikeo
Тема
Re: Re: [SQL] oracle rownum equivalent?
Дата
Msg-id
3.0.1.32.20000608082010.0092bdb0@pop.spectrumtelecorp.com
Ответ на
Re: Re: [SQL] oracle rownum equivalent? (Cary O'Brien)
Список
Дерево обсуждения
Re: [SQL] oracle rownum equivalent? Ed Loehr <eloehr@austin.rr.com>
RE: Re: [SQL] oracle rownum equivalent? "Hiroshi Inoue" <Inoue@tpf.co.jp>
At 06:47 PM 6/7/00 -0400, Cary O'Brien wrote: > >> thanks for the response. oid is equivalent to oracle rowid. > >I think there is a fundamentel difference between oid and rownum. >Oid is just a serial number. Rownum is a long string that tells >oracle where exactly the row is. So *I think* rownum can be >used for fast lookups, where oid, unless indexed, can't. > >Other than that they are the same pretty much. > >-- cary > i'll have to respectfully disagree with you on your interpretation of rownum. in oracle, rownum tells only the relative position of a row in a result set. also, it is an integer value starting at 1 up to nrows retrieved and is used, for the most part, to limit the result set and not for fast lookups. it also can be used in a DML statement within a function, such as mod(), to aid in generating a value. the point here is moot though, as postgres doesn't have an equivalent and i'll have to learn to live without that small piece of oracle and enjoy what i see as the greater benefits of postgres. :) mikeo
В списке pgsql-general по дате отправления