Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用flavorPHP框架,所以我的用户表带有字段组...我需要使用group = x值获取所有数据,如下所示:
$this->findAllBy("group", $x);
但它崩溃了......有什么想法吗?
乍一看,您似乎在使用 mysql 保留字作为字段的名称,请尝试更改名称或使用反引号 `group` 在其中形成要执行的查询。