Rails: Query all but first record?
I'd do it like this:
Item.where(:widget_id => 123).all[1..-1]
Alternatively you could use offset and limit with a very high limit.
Item.where(:widget_id => 123).limit(18446744073709551610).offset(1)
see Mysql Offset Infinite rows for a discussion on this.