検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 203 for where (0.018 sec.)
クエリー式 — Django 4.0.6 ドキュメント 7190
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ers ¶ F() is also very useful in QuerySet filters, where they make it possible to filter a set of objects a ... field' )) But both cases will result in a queryset where each model is annotated with an extra attribute fi ... database function. Returns a tuple (sql, params) , where sql is the SQL string, and params is the list or t ... SQL string rather than passed as query parameters, where the database driver would escape them. The *expres ...
https://man.plustar.jp/django/ref/models/expressions.html - [similar]
Django 1.11.5 リリースノート — Django 4.0.6 ドキュメント 7190
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ruct() if it's None ( #25809 ). Fixed a regression where SelectDateWidget localized the years in the select ... box ( #28530 ). Fixed a regression in 1.11.4 where runserver crashed with non-Unicode system encoding ... dows ( #28487 ). Fixed a regression in Django 1.10 where changes to a ManyToManyField weren't logged in the ... sion in contrib.auth 's login() and logout() views where they ignored positional arguments ( #28550 ). 目次 ...
https://man.plustar.jp/django/releases/1.11.5.html - [similar]
PostgreSQL specific model fields — Django 4.0.6 ドキュメント 7030
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... on ArrayField . The returned objects will be those where the values passed are a subset of the data. It use ... ntains lookup - the objects returned will be those where the data is a subset of the values passed. It uses ... t>, <Post: Third post>]> overlap ¶ Returns objects where the data shares any results with the values passed ... en on HStoreField . The returned objects are those where the given dict of key-value pairs are all containe ...
https://man.plustar.jp/django/ref/contrib/postgres/fields.html - [similar]
Django 1.10.2 release notes — Django 4.0.6 ドキュメント 7030
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... fixes ¶ Fixed a crash in MySQL database validation where SELECT @@sql_mode doesn't return a result ( #27180 ... "Broken pipe" error ( #27271 ). Fixed a regression where unchanged localized date/time fields were listed a ... Fixed , crash , トピック , previous , up , next , where , Bugfixes クイック検索 Last update: 2022年6月01日 ...
https://man.plustar.jp/django/releases/1.10.2.html - [similar]
Django 2.2.1 リリースノート — Django 4.0.6 ドキュメント 7030
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... nager ( #30325 ). Fixed a regression in Django 2.2 where Paginator crashes if object_list is a queryset ord ... sform ( #30335 ). Fixed a regression in Django 2.2 where IntegerField validation of database limits crashes ... lable ( #30328 ). Fixed a regression in Django 2.2 where SearchVector generates SQL that is not indexable ( ... tions ( #30323 ). Fixed a regression in Django 2.2 where changes were not reliably detected by auto-reloade ...
https://man.plustar.jp/django/releases/2.2.1.html - [similar]
Django 2.0.4 リリースノート — Django 4.0.6 ドキュメント 6869
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ID ( #29206 ). Fixed a regression in Django 1.11.8 where combining two annotated values_list() querysets wi ... umns ( #29229 ). Fixed a regression in Django 1.11 where an empty choice could be initially selected for th ... dgets ( #29273 ). Fixed a regression in Django 2.0 where OpenLayersWidget deserialization ignored the widge ...
https://man.plustar.jp/django/releases/2.0.4.html - [similar]
Conditional Expressions — Django 4.0.6 ドキュメント 6698
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ggregate produces a query with the SQL 2003 FILTER WHERE syntax on databases that support it: SELECT count ... ( 'id' ) FILTER ( WHERE account_type = 1 ) as regular , count ( 'id' ) FIL ... TER ( WHERE account_type = 2 ) as gold , count ( 'id' ) FILTER ... ( WHERE account_type = 3 ) as platinum FROM clients ; On o ...
https://man.plustar.jp/django/ref/models/conditional-expressions.html - [similar]
クエリを作成する — Django 4.0.6 ドキュメント 6698
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 文においては、 QuerySet は SELECT 句、フィルターは WHERE や LIMIT のような絞り込みに用いる句に対応しています ... ルドルックアップ ¶ フィールドルックアップは、SQL の WHERE 句の内容を指定する手段です。 QuerySet メソッド、 f ... 次の SQL 文に変換されます。 SELECT * FROM blog_entry WHERE pub_date <= '2006-01-01' ; 動作のしくみ Python には ... dog" ) は次のような SQL を生成します。 SELECT ... WHERE headline = 'Cat bites dog' ; ルックアップタイプを指 ...
https://man.plustar.jp/django/topics/db/queries.html - [similar]
Django 4.0.5 release notes — Django 4.0.6 ドキュメント 6291
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ugs in 4.0.4. Bugfixes ¶ Fixed a bug in Django 4.0 where not all OPTIONS were passed to a Redis client ( #3 ... expressions ( #33705 ). Fixed a bug in Django 4.0 where a hidden quick filter toolbar in the admin's navig ...
https://man.plustar.jp/django/releases/4.0.5.html - [similar]
データベースアクセスの最適化 — Django 4.0.6 ドキュメント 6291
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... via QuerySet.update() . Similarly, do bulk deletes where possible. Note, however, that these bulk update me ... tatements. Create in bulk ¶ When creating objects, where possible, use the bulk_create() method to reduce t ... use case. Update in bulk ¶ When updating objects, where possible, use the bulk_update() method to reduce t ... dd ( me ) my_band . members . add ( my_friend ) ...where Bands and Artists have a many-to-many relationship ...
https://man.plustar.jp/django/topics/db/optimization.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT