我可以做http://127.0.0.1:5000/people?where={"lastname":"like(\"Smi%\")"}让people.lastname LIKE "Smi%"
我如何连接两个条件,比如city=XX和pop<1000?
发布于 2015-06-06 08:12:01
你这么做很简单:
http://127.0.0.1:5000/people?where={"city":"XX", "pop":"<1000"}
https://stackoverflow.com/questions/30672259
复制相似问题