Results of 1 - 10 of about 144 for contains (0.025 sec.)
- GIS QuerySet API リファレンス — Django 4.0.6 ドキュメント 14189
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
l lookups. Case 検索方法 SQL Equivalent N, B rast__contains=rst ST_Contains(rast, rst) N, B rast__1__contains= ...
(rst, 2) ST_Contains(rast, 1, rst, 2) B, C rast__contains=geom ST_Conta ...
ins(ST_Polygon(rast), geom) B, C rast__1__contains=geom ST_Contains(ST_Polygon(rast, 1), geom) B, C p ...
oly__contains=rst ST_Contains(poly, ST_Polygon(rst)) B, C poly__ ...
-
https://man.plustar.jp/django/ref/contrib/gis/geoquerysets.html
- [similar]
- PostgreSQL specific model fields — Django 4.0.6 ドキュメント 11859
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
= True ) def __str__ ( self ): return self . name contains ¶ The contains lookup is overridden on ArrayField ...
, 'django' ]) >>> Post . objects . filter ( tags__contains = [ 'thoughts' ]) <QuerySet [<Post: First post>, < ...
Second post>]> >>> Post . objects . filter ( tags__contains = [ 'django' ]) <QuerySet [<Post: First post>, <Po ...
Third post>]> >>> Post . objects . filter ( tags__contains = [ 'django' , 'thoughts' ]) <QuerySet [<Post: Fir ...
-
https://man.plustar.jp/django/ref/contrib/postgres/fields.html
- [similar]
- GeoDjango Database API — Django 4.0.6 ドキュメント 9353
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
) 例: >>> qs = Zipcode . objects . filter ( poly__contains = pnt ) >>> qs = Elevation . objects . filter ( po ...
ly__contains = rst ) In this case, poly is the geographic field ...
, contains is the spatial lookup type, pnt is the parameter ( ...
例: >>> qs = Elevation . objects . filter ( rast__contains = geom ) >>> qs = Elevation . objects . filter ( r ...
-
https://man.plustar.jp/django/ref/contrib/gis/db-api.html
- [similar]
- Django 1.0.2 リリースノート — Django 4.0.6 ドキュメント 8986
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
of the Django 1.0 codebase. As such, Django 1.0.2 contains no new features (and, pursuant to our compatibilit ...
and part of Django's unit-test suite. Django 1.0.2 contains updated packaging scripts, and the release package ...
contains the directories omitted from Django 1.0.1. As such ...
, this release contains all of the fixes and improvements from Django 1.0. ...
-
https://man.plustar.jp/django/releases/1.0.2.html
- [similar]
- QuerySet API リファレンス — Django 4.0.6 ドキュメント 8726
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
This means that when you unpickle a QuerySet , it contains the results at the moment it was pickled, rather t ...
alues() with the normal model objects: # This list contains a Blog object. >>> Blog . objects . filter ( name_ ...
QuerySet [ < Blog : Beatles Blog > ] > # This list contains a dictionary. >>> Blog . objects . filter ( name__ ...
, it returns tuples when iterated over. Each tuple contains the value from the respective field or expression ...
-
https://man.plustar.jp/django/ref/models/querysets.html
- [similar]
- Django 2.2.1 リリースノート — Django 4.0.6 ドキュメント 8726
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
rdering argument in ArrayAgg and StringAgg when it contains an expression with params ( #30332 ). Fixed a regr ...
eck constraints and partial indexes when condition contains a range object ( #30350 ). Reverted an optimizatio ...
d PostgreSQL when adding a check constraint with a contains , startswith , or endswith lookup (or their case-i ...
Lite when adding a check constraint with condition contains | ( OR ) operator ( #30412 ). 目次 Django 2.2.1 リ ...
-
https://man.plustar.jp/django/releases/2.2.1.html
- [similar]
- クエリを作成する — Django 4.0.6 ドキュメント 8631
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
date . today ()) >>> q = q . exclude ( body_text__icontains = "food" ) >>> print ( q ) この例ではデータベースに ...
blOG" というタイトルを持つ Blog にもマッチします。 contains case-sensitive な部分一致テストを行います。たとえば ...
、 Entry . objects . get ( headline__contains = 'Lennon' ) はだいたい次のような SQL に変換されま ...
に注意してください。 case-insensitive バージョンの icontains もあります。 startswith と endswith それぞれ start ...
-
https://man.plustar.jp/django/topics/db/queries.html
- [similar]
- GEOS API — Django 4.0.6 ドキュメント 8454
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
aris, and macOS platforms. Tutorial ¶ This section contains a brief introduction and tutorial to using GEOSGeo ...
s a parameter, and return a boolean. GEOSGeometry. contains ( other ) ¶ Returns True if other.within(this) ret ...
False . This predicate is similar to GEOSGeometry.contains() , but is more inclusive (i.e. returns True for m ...
ore cases). In particular, unlike contains() it does not distinguish between points in the bo ...
-
https://man.plustar.jp/django/ref/contrib/gis/geos.html
- [similar]
- django.contrib.postgres.validators — Django 4.0.6 ドキュメント 8005
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
LengthValidator ): message = ngettext_lazy ( "List contains %(show_value)d item, it should contain no more tha ...
n " " %(limit_value)d ." , "List contains %(show_value)d items, it should contain no more th ...
LengthValidator ): message = ngettext_lazy ( "List contains %(show_value)d item, it should contain no fewer th ...
an " " %(limit_value)d ." , "List contains %(show_value)d items, it should contain no fewer t ...
-
https://man.plustar.jp/django/_modules/django/contrib/postgres/validators.html
- [similar]
- GDAL API — Django 4.0.6 ドキュメント 7827
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
source is represented by a DataSource object which contains one or more layers of data. Each layer, represente ...
d by a Layer object, contains some number of geographic features ( Feature ), in ...
urce , you can find out how many layers of data it contains by accessing the layer_count property, or (equival ...
/cities.shp' >>> ds . layer_count # This file only contains one layer 1 layer_count ¶ Returns the number of la ...
-
https://man.plustar.jp/django/ref/contrib/gis/gdal.html
- [similar]