select printouttime from nhis2.[dbo].[DtDNAReport]
where RegistrationId='906815C7-44C7-E211-8BA0-00E04C7727C6' and PrintOut is not null
注:printout是varbinary(max)类型
但是我用临时表就很快:
select printouttime,printout into #a from nhis2.[dbo].[DtDNAReport] where RegistrationId='906815C7-44C7-E211-8BA0-00E04C7727C6'
select * from #a where PrintOut is not null
不明白是为什么??请高手指点迷津。
该表只有1万多数据,printout是filestream字段
看一下查询计划,瓶颈是哪个地方,索引估计没有使用好
是的。索引的问题