我用的是这样的东西:
$scanned = DB::table("Persons")
->whereNotIn("Person_Id", $exclude)
->get();
问题是$exclude的记录超过2101条,我得到以下错误:
SQLSTATE[IMSSP]: Tried to bind parameter number 2101. SQL Server supports a maximum of 2100 parameters.
有什么办法吗,我怎么解决这个问题?
1条答案
按热度按时间b4wnujal1#
假设以下表格为例。
假设我想要的人没有特定的标签,我可以这样做:
然后
如果有很多数据,上面的代码可能会有同样的问题。相反,我会把它作为一个连接。