In this below query, I don't want to take the temporary column (RowNum) details.
SELECT *
FROM (SELECT Row_number()
OVER (
ORDER BY column_name) AS RowNum,
*
FROM table_name) Temp
WHERE ( rownum%2 ) = 0
Help me getting the query..