这是我的 sql 查询
SELECT id, name, address, city, state_province, country, website
FROM books_publisher
WHERE name LIKE '%press' and city LIKE '%myn';
正如您在上面的代码中看到的那样,我已经使用and
了多个like
如何在 Django 中做同样的事情?我试过了,但没有用
Mplaces.objects.filter(name__startswith='press' and city__startswith=myn)