我正在尝试使用 php pear db 运行查询并且没有返回任何值。但是,当我使用 SQL Server 运行时,我得到了数据
在 PHP 中,我已经在设置:
“SET ANSI_NULLS ON”和“SET ANSI_WARNINGS ON”
询问:
select A.nome, count(sa.id_sala) as Atendimentos, cast( avg( case when (coalesce(sa.dt_final, sa.dt_ping_internauta) > sa.dt_inicio_atendimento) then datediff(minute, coalesce(sa.dt_inicio_atendimento, sa.dt_inicio), coalesce(sa.dt_finalAtendimento, coalesce(sa.dt_final, sa.dt_ping_internauta)) ) else 0 end ) as money) as [media em minutos] from sala SA join atendente A on (A.id_atendente = SA.fk_id_atendente) where sa.interno = 0 and coalesce(sa.dt_inicio_atendimento, sa.dt_inicio) between '2012-01-01' and '2012-12-31' and SA.fk_id_empresa = 1 group by A.nome order by 2 desc
解决了
解决方案:
“在 SQL Server 中使用的安全日期时间字符串格式是
YYYYMMDD HH:MM:SS 或 YYYY-MM-DDTHH:MM:SS。”