sql.txt 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391
  1. ==========================
  2. Performing raw SQL queries
  3. ==========================
  4. .. currentmodule:: django.db.models
  5. Django gives you two ways of performing raw SQL queries: you can use
  6. :meth:`Manager.raw()` to `perform raw queries and return model instances`__, or
  7. you can avoid the model layer entirely and `execute custom SQL directly`__.
  8. __ `performing raw queries`_
  9. __ `executing custom SQL directly`_
  10. .. admonition:: Explore the ORM before using raw SQL!
  11. The Django ORM provides many tools to express queries without writing raw
  12. SQL. For example:
  13. * The :doc:`QuerySet API </ref/models/querysets>` is extensive.
  14. * You can :meth:`annotate <.QuerySet.annotate>` and :doc:`aggregate
  15. </topics/db/aggregation>` using many built-in :doc:`database functions
  16. </ref/models/database-functions>`. Beyond those, you can create
  17. :doc:`custom query expressions </ref/models/expressions/>`.
  18. Before using raw SQL, explore :doc:`the ORM </topics/db/index>`. Ask on
  19. |django-users| or the `#django IRC channel
  20. <irc://irc.freenode.net/django>`_ to see if the ORM supports your use case.
  21. .. warning::
  22. You should be very careful whenever you write raw SQL. Every time you use
  23. it, you should properly escape any parameters that the user can control
  24. by using ``params`` in order to protect against SQL injection attacks.
  25. Please read more about :ref:`SQL injection protection
  26. <sql-injection-protection>`.
  27. .. _executing-raw-queries:
  28. Performing raw queries
  29. ======================
  30. The ``raw()`` manager method can be used to perform raw SQL queries that
  31. return model instances:
  32. .. method:: Manager.raw(raw_query, params=None, translations=None)
  33. This method takes a raw SQL query, executes it, and returns a
  34. ``django.db.models.query.RawQuerySet`` instance. This ``RawQuerySet`` instance
  35. can be iterated over like a normal :class:`~django.db.models.query.QuerySet` to
  36. provide object instances.
  37. This is best illustrated with an example. Suppose you have the following model::
  38. class Person(models.Model):
  39. first_name = models.CharField(...)
  40. last_name = models.CharField(...)
  41. birth_date = models.DateField(...)
  42. You could then execute custom SQL like so::
  43. >>> for p in Person.objects.raw('SELECT * FROM myapp_person'):
  44. ... print(p)
  45. John Smith
  46. Jane Jones
  47. Of course, this example isn't very exciting -- it's exactly the same as
  48. running ``Person.objects.all()``. However, ``raw()`` has a bunch of other
  49. options that make it very powerful.
  50. .. admonition:: Model table names
  51. Where did the name of the ``Person`` table come from in that example?
  52. By default, Django figures out a database table name by joining the
  53. model's "app label" -- the name you used in ``manage.py startapp`` -- to
  54. the model's class name, with an underscore between them. In the example
  55. we've assumed that the ``Person`` model lives in an app named ``myapp``,
  56. so its table would be ``myapp_person``.
  57. For more details check out the documentation for the
  58. :attr:`~Options.db_table` option, which also lets you manually set the
  59. database table name.
  60. .. warning::
  61. No checking is done on the SQL statement that is passed in to ``.raw()``.
  62. Django expects that the statement will return a set of rows from the
  63. database, but does nothing to enforce that. If the query does not
  64. return rows, a (possibly cryptic) error will result.
  65. .. warning::
  66. If you are performing queries on MySQL, note that MySQL's silent type coercion
  67. may cause unexpected results when mixing types. If you query on a string
  68. type column, but with an integer value, MySQL will coerce the types of all values
  69. in the table to an integer before performing the comparison. For example, if your
  70. table contains the values ``'abc'``, ``'def'`` and you query for ``WHERE mycolumn=0``,
  71. both rows will match. To prevent this, perform the correct typecasting
  72. before using the value in a query.
  73. Mapping query fields to model fields
  74. ------------------------------------
  75. ``raw()`` automatically maps fields in the query to fields on the model.
  76. The order of fields in your query doesn't matter. In other words, both
  77. of the following queries work identically::
  78. >>> Person.objects.raw('SELECT id, first_name, last_name, birth_date FROM myapp_person')
  79. ...
  80. >>> Person.objects.raw('SELECT last_name, birth_date, first_name, id FROM myapp_person')
  81. ...
  82. Matching is done by name. This means that you can use SQL's ``AS`` clauses to
  83. map fields in the query to model fields. So if you had some other table that
  84. had ``Person`` data in it, you could easily map it into ``Person`` instances::
  85. >>> Person.objects.raw('''SELECT first AS first_name,
  86. ... last AS last_name,
  87. ... bd AS birth_date,
  88. ... pk AS id,
  89. ... FROM some_other_table''')
  90. As long as the names match, the model instances will be created correctly.
  91. Alternatively, you can map fields in the query to model fields using the
  92. ``translations`` argument to ``raw()``. This is a dictionary mapping names of
  93. fields in the query to names of fields on the model. For example, the above
  94. query could also be written::
  95. >>> name_map = {'first': 'first_name', 'last': 'last_name', 'bd': 'birth_date', 'pk': 'id'}
  96. >>> Person.objects.raw('SELECT * FROM some_other_table', translations=name_map)
  97. Index lookups
  98. -------------
  99. ``raw()`` supports indexing, so if you need only the first result you can
  100. write::
  101. >>> first_person = Person.objects.raw('SELECT * FROM myapp_person')[0]
  102. However, the indexing and slicing are not performed at the database level. If
  103. you have a large number of ``Person`` objects in your database, it is more
  104. efficient to limit the query at the SQL level::
  105. >>> first_person = Person.objects.raw('SELECT * FROM myapp_person LIMIT 1')[0]
  106. Deferring model fields
  107. ----------------------
  108. Fields may also be left out::
  109. >>> people = Person.objects.raw('SELECT id, first_name FROM myapp_person')
  110. The ``Person`` objects returned by this query will be deferred model instances
  111. (see :meth:`~django.db.models.query.QuerySet.defer()`). This means that the
  112. fields that are omitted from the query will be loaded on demand. For example::
  113. >>> for p in Person.objects.raw('SELECT id, first_name FROM myapp_person'):
  114. ... print(p.first_name, # This will be retrieved by the original query
  115. ... p.last_name) # This will be retrieved on demand
  116. ...
  117. John Smith
  118. Jane Jones
  119. From outward appearances, this looks like the query has retrieved both
  120. the first name and last name. However, this example actually issued 3
  121. queries. Only the first names were retrieved by the raw() query -- the
  122. last names were both retrieved on demand when they were printed.
  123. There is only one field that you can't leave out - the primary key
  124. field. Django uses the primary key to identify model instances, so it
  125. must always be included in a raw query. A
  126. :class:`~django.core.exceptions.FieldDoesNotExist` exception will be raised if
  127. you forget to include the primary key.
  128. Adding annotations
  129. ------------------
  130. You can also execute queries containing fields that aren't defined on the
  131. model. For example, we could use `PostgreSQL's age() function`__ to get a list
  132. of people with their ages calculated by the database::
  133. >>> people = Person.objects.raw('SELECT *, age(birth_date) AS age FROM myapp_person')
  134. >>> for p in people:
  135. ... print("%s is %s." % (p.first_name, p.age))
  136. John is 37.
  137. Jane is 42.
  138. ...
  139. You can often avoid using raw SQL to compute annotations by instead using a
  140. :ref:`Func() expression <func-expressions>`.
  141. __ https://www.postgresql.org/docs/current/functions-datetime.html
  142. Passing parameters into ``raw()``
  143. ---------------------------------
  144. If you need to perform parameterized queries, you can use the ``params``
  145. argument to ``raw()``::
  146. >>> lname = 'Doe'
  147. >>> Person.objects.raw('SELECT * FROM myapp_person WHERE last_name = %s', [lname])
  148. ``params`` is a list or dictionary of parameters. You'll use ``%s``
  149. placeholders in the query string for a list, or ``%(key)s``
  150. placeholders for a dictionary (where ``key`` is replaced by a
  151. dictionary key, of course), regardless of your database engine. Such
  152. placeholders will be replaced with parameters from the ``params``
  153. argument.
  154. .. note::
  155. Dictionary params are not supported with the SQLite backend; with
  156. this backend, you must pass parameters as a list.
  157. .. warning::
  158. **Do not use string formatting on raw queries or quote placeholders in your
  159. SQL strings!**
  160. It's tempting to write the above query as::
  161. >>> query = 'SELECT * FROM myapp_person WHERE last_name = %s' % lname
  162. >>> Person.objects.raw(query)
  163. You might also think you should write your query like this (with quotes
  164. around ``%s``)::
  165. >>> query = "SELECT * FROM myapp_person WHERE last_name = '%s'"
  166. **Don't make either of these mistakes.**
  167. As discussed in :ref:`sql-injection-protection`, using the ``params``
  168. argument and leaving the placeholders unquoted protects you from `SQL
  169. injection attacks`__, a common exploit where attackers inject arbitrary
  170. SQL into your database. If you use string interpolation or quote the
  171. placeholder, you're at risk for SQL injection.
  172. __ https://en.wikipedia.org/wiki/SQL_injection
  173. .. _executing-custom-sql:
  174. Executing custom SQL directly
  175. =============================
  176. Sometimes even :meth:`Manager.raw` isn't quite enough: you might need to
  177. perform queries that don't map cleanly to models, or directly execute
  178. ``UPDATE``, ``INSERT``, or ``DELETE`` queries.
  179. In these cases, you can always access the database directly, routing around
  180. the model layer entirely.
  181. The object ``django.db.connection`` represents the default database
  182. connection. To use the database connection, call ``connection.cursor()`` to
  183. get a cursor object. Then, call ``cursor.execute(sql, [params])`` to execute
  184. the SQL and ``cursor.fetchone()`` or ``cursor.fetchall()`` to return the
  185. resulting rows.
  186. For example::
  187. from django.db import connection
  188. def my_custom_sql(self):
  189. with connection.cursor() as cursor:
  190. cursor.execute("UPDATE bar SET foo = 1 WHERE baz = %s", [self.baz])
  191. cursor.execute("SELECT foo FROM bar WHERE baz = %s", [self.baz])
  192. row = cursor.fetchone()
  193. return row
  194. To protect against SQL injection, you must not include quotes around the ``%s``
  195. placeholders in the SQL string.
  196. Note that if you want to include literal percent signs in the query, you have to
  197. double them in the case you are passing parameters::
  198. cursor.execute("SELECT foo FROM bar WHERE baz = '30%'")
  199. cursor.execute("SELECT foo FROM bar WHERE baz = '30%%' AND id = %s", [self.id])
  200. If you are using :doc:`more than one database </topics/db/multi-db>`, you can
  201. use ``django.db.connections`` to obtain the connection (and cursor) for a
  202. specific database. ``django.db.connections`` is a dictionary-like
  203. object that allows you to retrieve a specific connection using its
  204. alias::
  205. from django.db import connections
  206. with connections['my_db_alias'].cursor() as cursor:
  207. # Your code here...
  208. By default, the Python DB API will return results without their field names,
  209. which means you end up with a ``list`` of values, rather than a ``dict``. At a
  210. small performance and memory cost, you can return results as a ``dict`` by
  211. using something like this::
  212. def dictfetchall(cursor):
  213. "Return all rows from a cursor as a dict"
  214. columns = [col[0] for col in cursor.description]
  215. return [
  216. dict(zip(columns, row))
  217. for row in cursor.fetchall()
  218. ]
  219. Another option is to use :func:`collections.namedtuple` from the Python
  220. standard library. A ``namedtuple`` is a tuple-like object that has fields
  221. accessible by attribute lookup; it's also indexable and iterable. Results are
  222. immutable and accessible by field names or indices, which might be useful::
  223. from collections import namedtuple
  224. def namedtuplefetchall(cursor):
  225. "Return all rows from a cursor as a namedtuple"
  226. desc = cursor.description
  227. nt_result = namedtuple('Result', [col[0] for col in desc])
  228. return [nt_result(*row) for row in cursor.fetchall()]
  229. Here is an example of the difference between the three::
  230. >>> cursor.execute("SELECT id, parent_id FROM test LIMIT 2");
  231. >>> cursor.fetchall()
  232. ((54360982, None), (54360880, None))
  233. >>> cursor.execute("SELECT id, parent_id FROM test LIMIT 2");
  234. >>> dictfetchall(cursor)
  235. [{'parent_id': None, 'id': 54360982}, {'parent_id': None, 'id': 54360880}]
  236. >>> cursor.execute("SELECT id, parent_id FROM test LIMIT 2");
  237. >>> results = namedtuplefetchall(cursor)
  238. >>> results
  239. [Result(id=54360982, parent_id=None), Result(id=54360880, parent_id=None)]
  240. >>> results[0].id
  241. 54360982
  242. >>> results[0][0]
  243. 54360982
  244. Connections and cursors
  245. -----------------------
  246. ``connection`` and ``cursor`` mostly implement the standard Python DB-API
  247. described in :pep:`249` — except when it comes to :doc:`transaction handling
  248. </topics/db/transactions>`.
  249. If you're not familiar with the Python DB-API, note that the SQL statement in
  250. ``cursor.execute()`` uses placeholders, ``"%s"``, rather than adding
  251. parameters directly within the SQL. If you use this technique, the underlying
  252. database library will automatically escape your parameters as necessary.
  253. Also note that Django expects the ``"%s"`` placeholder, *not* the ``"?"``
  254. placeholder, which is used by the SQLite Python bindings. This is for the sake
  255. of consistency and sanity.
  256. Using a cursor as a context manager::
  257. with connection.cursor() as c:
  258. c.execute(...)
  259. is equivalent to::
  260. c = connection.cursor()
  261. try:
  262. c.execute(...)
  263. finally:
  264. c.close()
  265. Calling stored procedures
  266. ~~~~~~~~~~~~~~~~~~~~~~~~~
  267. .. method:: CursorWrapper.callproc(procname, params=None, kparams=None)
  268. Calls a database stored procedure with the given name. A sequence
  269. (``params``) or dictionary (``kparams``) of input parameters may be
  270. provided. Most databases don't support ``kparams``. Of Django's built-in
  271. backends, only Oracle supports it.
  272. For example, given this stored procedure in an Oracle database:
  273. .. code-block:: sql
  274. CREATE PROCEDURE "TEST_PROCEDURE"(v_i INTEGER, v_text NVARCHAR2(10)) AS
  275. p_i INTEGER;
  276. p_text NVARCHAR2(10);
  277. BEGIN
  278. p_i := v_i;
  279. p_text := v_text;
  280. ...
  281. END;
  282. This will call it::
  283. with connection.cursor() as cursor:
  284. cursor.callproc('test_procedure', [1, 'test'])