displaying values from query result in rails

i have one query, which gives the correct output in query browser.

@getquery = Cname.select(“cnames.name”).where(‘skills.rate= ? AND skills.skill= ?’,3,@searchstring).joins(‘JOIN skills ON cnames.id = skills.company_id’)

****when i print the @getquery, it gives

#Cname:0x00000003f511f0

#Cname:0x00000003e8aa28****

**how to get the name from this **@getquery?

Thanks

@getquery.name

@getquery.name

Thanks…

that time @getquery.name gives the output

Cname

@getquery.name

Got the result