Hi, select * from table1 inner join table2 on table1.foreign_key = table2.foreign_key
select * from table1 inner join table2 on table1.foreign_key = table2.foreign_key join table3 on table2.foreign_key=table3.foreign_key These are the SQL commands, I need to apply it in Rails. Kindly tell me the syntax in Rails to apply these SQL commands instead of sql_query. -- With Regards Palani Kannan. K. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

