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


Oscar Del B.
Sent with Sparrow (http://www.sparrowmailapp.com/?sig)

On Monday, 25 June 2012 20:51:53 UTC+5:30, Oscar Del B. wrote:

@getquery.name

Thanks…
that time @getquery.name gives the output

Cname

On Monday, 25 June 2012 20:56:45 UTC+5:30, amruby wrote:

On Monday, 25 June 2012 20:51:53 UTC+5:30, Oscar Del B. wrote:

@getquery.name

Got the result