我DateTime
在 SQL Server 2008 R2 数据库的表上有一个列。我的 c# 前端使用 datetime 参数在此表中插入一行。
DateTime T = DateTime.Now;
cmd.CommandType = CommandType.StoredProcedure;
cmd.CommandText = "cargridsnapshot";
cmd.Parameters.AddWithValue("@t", T);
cmd.ExecuteNonQuery();
表中行中的日期时间列是这样的:
2013-09-04 16:21:23.450
但
select * from table
where TIMECOLUMN = '2013-09-04 16:21:23.450'
不返回任何结果。