Ticket #12805: doc_patch.diff
File doc_patch.diff, 461 bytes (added by , 15 years ago) |
---|
-
docs/topics/db/sql.txt
37 37 38 38 You could then execute custom SQL like so:: 39 39 40 >>> Person.objects.raw('SELECT * from myapp_person')40 >>> list(Person.objects.raw('SELECT * from myapp_person')) 41 41 [<Person: John Doe>, <Person: Jane Doe>, ...] 42 42 43 43 .. admonition:: Model table names