We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
因为需要,要筛选“不包含某些字符”的数据,要用到not like来进行操作,发现好像不支持。。。
The text was updated successfully, but these errors were encountered:
是的 not like api里是没做支持,也不建议使用, 如果一定要用,可以参考sql模板 http://www.billge.cc/#dao-command
$result = $this->userDAO->filter(array('id'=>10)) ->select("select * from :table WHERE :where and `column` not like `%xxx%`;");
Sorry, something went wrong.
not like 现在支持了,同时也支持了regexp,用法跟其他运算符一致,参考文档 http://www.billge.cc/#dao-extracts
No branches or pull requests
因为需要,要筛选“不包含某些字符”的数据,要用到not like来进行操作,发现好像不支持。。。
The text was updated successfully, but these errors were encountered: