Assume that i have a table usr with feilds name and age table usr
____________
id|name |age|
1 |dinkan | 12|
____________
my query is
select id from usr where name="dinkan" or age="20";
the corresponding output should be 1
so , my question is how to implement this in django 2.1 using models