我是 PHP 新手,甚至是使用 MS SQL 而非 MySQL 的 PHP 新手。在做了一些研究之后,我想出了一个可以考虑使用分页查询的方法,但显然我在某个地方出错了,因为它会引发错误。我不明白为什么。
继承人的查询:
SELECT TOP 10 * FROM Products WHERE SubCatID = '".$scid."' and ProductID NOT IN ( SELECT TOP 0 * FROM Products ORDER BY ProductID ASC ) ORDER BY ProductID ASC
继承人的错误:
Warning: mssql_query() [function.mssql-query]: message: Only one expression can be specified in the select list when the subquery is not introduced with EXISTS. (severity 16)
我知道这是因为子查询,但是任何人都可以指出我正确的方向吗?