while statement

Lets say i would like to select 3rd record onwards from a customize table called tmp_KMN which id number for the the 3rd record is 12334, can i use below while statement?
while SELECT * FROM tmp_KMN
order by id
where tmp_KMN.Id >= ‘12334’

Hi misha,

Yes, You can use the above statement.

Thank you Chaitanya [:D]

Hi, while SELECT * FROM tmp_KMN order by id where tmp_KMN.Id >= ‘12334’ This is correct statement you have written . You can you this.