Person.objects.raw(‘SELECT * FROM Person LIMIT 2‘)
Person.objects.raw(‘‘‘SELECT first AS first_name,
... last AS last_name,
... bd AS birth_date,
... pk as id,
... FROM some_other_table‘‘‘)
原文:http://www.cnblogs.com/sayHello2World/p/7490431.html