1>>> Person.objects.raw('''SELECT first AS first_name,
2... last AS last_name,
3... bd AS birth_date,
4... pk AS id,
5... FROM some_other_table''')
6