I want select multi records for serial number, like :
select * from
(
select 11 as COMP_NO
union
select 12
union
select 13
union
select 14
union
select 15
) A
If I want to select 100 records or more, Is there a better way ?