SQL Server查找整点数据的两种方式
上一篇:根据IP查主机名和MAC地址
select * from tb where right(convert(varchar(19),h_date,120),5) = '00:00'
select * from tb where datepart(mi,h_date) = 0 and datepart(ss,h_date) = 0
下一篇:SQL Server 2005镜像删除备忘录
select * from tb where right(convert(varchar(19),h_date,120),5) = '00:00'
select * from tb where datepart(mi,h_date) = 0 and datepart(ss,h_date) = 0
下一篇:SQL Server 2005镜像删除备忘录