将查询语句中的'”替换为具体的列名或使用COUNT()来统计行数。
示例代码:
原始查询语句:
SELECT * FROM table
修改后的查询语句1:
SELECT column1, column2, …, columnN FROM table
修改后的查询语句2:
SELECT COUNT(*) FROM table
上一篇:Argument'ArrayRow':BC30333:值类型'Integer()'无法转换为'Object()',因为'Integer'不是引用类型。
下一篇:Argument1:cannotconvertfrom'methodgroup'to'ParameterizedThreadStart'