1
如果我有以下表格:獲得最新的「創造」行(企業跨越式表)
class Potter(models.Model):
name = models.CharField()
class Sculpture(models.Model):
potter = models.ForeignKey(Potter)
created = models.DateTimeField()
class Vase(models.Model):
potter = models.ForeignKey(Potter)
created = models.DateTimeField()
我怎麼能找到一定Potter
與數據庫訪問的最低金額最近Sculpture
或Vase
(即這是我的問題過於簡單化,我有更多的兩個表引用Potter
)?
所以我必須得到這兩個,然後'created'值比較他們? – Sevenearths 2013-03-21 17:08:24
是的,的確是!!!!!! << ---隨機字符只是爲了填寫評論的最低字符要求 – 2013-03-21 17:10:21