how to use not like in django requests
Model.objects.filter(keywords not like "null" or "undefined") select * from model where keywords not like "%undefined%" or keywords not like "%null%";
use function excludeand Qobjects
exclude
Q
Model.objects.exclude(Q(keyword__contains='undefined') | Q(keyword__contains='null'))
Source: https://habr.com/ru/post/1775160/More articles:vertical centering in gwt - htmlHTML Special Characters - htmlHadoop MapReduce - Pig / Cassandra - Unable to create input splits - cassandraStaple processor runs on S3 - ruby-on-railshtml development for Android - androidWhat is the correct way not to update out variable - c #Difference between URI and URL - htmlperformance issues when using the Java Advanced Imaging API - appletTips / resources for structuring C code? - cNeed help defining an infinite loop - cAll Articles