Create table tmp_table (name varchar(20),age int)
Insert into tmp_table Values('Hari',27)
Insert into tmp_table Values('Sai gopal',27)
Insert into tmp_table Values('Jeeva',29)
Insert into tmp_table Values('Shanmuga Raja',25)
Insert into tmp_table Values('Senthil',26)
Insert into tmp_table Values('Sandesh',27)
Insert into tmp_table Values('Segu',25)
)
Select *...