Explore my side projects and work using this link

Upsidedown is a WordPress theme design that brings blog posts rising above inverted header and footer components.

Django – ORM filter NULL 체크

Written in

by

Advertisements

가장 기본이긴 한데, 막상 쓰려니 또 찾아보네

정리해두자 코드 조각으로

Name.objects.exclude(alias__isnull=True).exclude(alias__exact='')
  • __isnull =  True
  • __exact = ”
Advertisements