select count(category) from list where category like ‘action’
以上是我要运行的查询。但是,当我运行该查询时,出现数据类型错误。 有其他替代方法count()吗?或… 当数据类型为文本时,如何使用count()方法 ?
count()
您不能将COUNT()函数应用于text,ntext,image数据类型。
为什么不能使用:
select count(*) from list where category like 'action'
?你有空值吗?
如果您不必排除null值,则上述查询已经可以正常使用…