Displaying 1 result from an estimated 1 matches for "numberssentfeedlink".
2006 Apr 30
2
Give me NIL or null results
with this post; with a query with multiple tables, I am trying to return
results that are null in one table; I am trying to do something like this;
class NumbersFeedLink < ActiveRecord::Base
has_many :numbers_sent_feed_link
end
class NumbersSentFeedLink < ActiveRecord::Base
belongs_to :numbers_feed_link
end
sent = NumbersFeedLink.find(:all,
:order => [ "created_on desc" ],
:limit => @max_links_send,
:conditions => [ "numbers_sent_feed_link == nil" ]...