0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Django O/Rマッパー 不等号表し方

Last updated at Posted at 2021-04-17

DjangoのO/Rマッパー備忘録

#より大きい:> (greater than)
Sample.objects.filter(field__gt='条件')

#以上:≧ (greater than or equal)
Sample.objects.filter(field__gte='条件')

#より小さい:< (less than)
Sample.objects.filter(field__lt='条件')

#以下:≦ (less than or equal)
Sample.objects.filter(field__lte='条件')

#BETWEEN句検索
Sample.objects.filter(field__range=(start, end))

日付の厳密一致

#年
Sample.objects.filter(field__year=sample_year)
#月
Sample.objects.filter(field__month=sample_month)
#日
Sample.objects.filter(field__day=sample_day)
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?