例如,我的某个模特中有一个字段状态:
CHOICES = (
('new', u'New'),
('old', u'Old'),
)
status = models.CharField(u'Status', max_length=10, choices=CHOICES, default=0)
如果我在SQL中键入:t1.status
,我将获得new
& old
代替New
& Old
而在django中,我可以输入:get_status_display()
来获取New
& Old
,我怎么能在SQL中做到这一点?