From: Jerry Jones Date: 2007-06-05T05:02:06+09:00 Subject: link_to query mysql for list I have a web app that I want to make a link. I have a link_to that will show the entire list of an inventory table, but I want another link that will select only items of a certain name. Here is my show all link <%= link_to 'View Jewelry', {:controller => "inventory_item", :action => "list"} %> I am unable to find a reference/example to show me how to do this. I am new, please be gentle with me. =)