本文介绍了约会时间的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

每个表都有一个审计字段,用于保存最后修改的数据。

我将此字段设置为日期时间数据类型,默认值为getdate(),

so这个值记录的时间是这个10/12/2004 7:28:02 AM。

当我查询得到那个值时,什么也没出现。

我查了一个查询如下所示

从testtable中选择auditime其中auditime =''10/12/2004 7:28:02 AM''

但是没有提取任何内容。我做错了什么?

each table has a auditime field which keeps the last data who modified.
I set this field as a datetime datatype and default value is getdate(),
so the value is recorded like this 10/12/2004 7:28:02 AM.
When I query to get that value, nothing showed up.
I made a query as below
select auditime from testtable where auditime = ''10/12/2004 7:28:02 AM''
but nothing was fetched. what did i do wrong?

推荐答案





这篇关于约会时间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-16 11:20