SQL 列出当天的数据 ( 积分: 50 )

  • 主题发起人 主题发起人 why_119
  • 开始时间 开始时间
W

why_119

Unregistered / Unconfirmed
GUEST, unregistred user!
select * from t1 where date=date()

date字段格试为 2007-01-01 24:01:01
是不是这样写呀
 
access的话把你的时间格式转换一下用formatdatetime(date,2)=date()
MSSQL也有个函数,自己查一下帮助。
 
select * from 表名 where 字段=formatdatetime('yyyy-mm-dd',date())
 
formatdatetime(date,2)=date()
不行呀...数据列不出来
 
select * from cgstore where rkrq=left(convert(char(20),getdate()),10)
这样就可以查到当天的数据了 在查询分析器里 我测试通过了
 
select * from cgstore where rkrq=convert(char(10),getdate(),120)
就OK了.
 
多人接受答案了。
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
回复
0
查看
782
爱音乐的孩子是小白
后退
顶部