| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 912 人关注过本帖
标题:求助 一个时间查询 问题 急急
取消只看楼主 加入收藏
yslhn
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2005-11-29
收藏
 问题点数:0 回复次数:6 
求助 一个时间查询 问题 急急
从表中查询"intime"等于某年某月的记录
数据库是access的
表的结构是这样的
main(lanmuid intime outtime ) intime 和outtime都是时间日期型 格式是

2005-11-12 19:25:00

我是一个刚刚学的菜鸟 麻烦写详细点
sql=select * from mainwhere intime=.........
怎么写
搜索更多相关主题的帖子: 数据库 intime outtime 时间 
2005-11-29 20:10
yslhn
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2005-11-29
收藏
得分:0 

不好意思
可能我没有说清楚把
是输入某年某月 就把某年某月的记录查出来
2005-11-12 19:25:00 这个只是说明时间个可是而已

不过还是要谢谢楼上的还想问下
sql="select * from main where intime like '2005-11'"
什么都查不出
sql="select * from main where intime like '2005-11-12 19:25:00'"
这个就可以
不知道模糊查询是怎么搞的
可以用于查询某年某月的记录不

2005-11-29 22:47
yslhn
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2005-11-29
收藏
得分:0 

谢谢斑竹 哪个可以用
还问一个问题
如果我在一个文本框里输入2005-11 点查询就可以查询2005年11月的记录
怎么才能利用这个查询
sql="select * from main where datediff('m',intime,'2005-11-12 19:25:00')=0"
也就是怎么把2005-11这个转化

2005-11-30 20:57
yslhn
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2005-11-29
收藏
得分:0 

加上这个后
dim thedate
thedate=request("thedate")
thedate=thedate&"-12 19:25:00"
thedate=cdate(thedate)
sql="select * from main where datediff('m',intime,'"&thedate&"')=0"

报错
错误类型:
Microsoft VBScript 运行时错误 (0x800A000D)
类型不匹配: 'cdate'

2005-12-01 19:35
yslhn
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2005-11-29
收藏
得分:0 
盖茨他爹
帮帮忙哦
谢谢了
2005-12-03 13:00
yslhn
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2005-11-29
收藏
得分:0 
dim thedate
thedate=request("thedate")
thedate=thedate&"-12 00:00:00"
sql="select * from main where datediff('m',intime,'"&thedate&"')=0
sql=sql&" order by shiyongren asc"
Set rs=Server.CreateObject("adodb.recordset")
rs.Open sql,conn,1,1
报错
说rs.Open sql,conn,1,1
这行不支持
Microsoft OLE DB Provider for ODBC Drivers (0x80040E21)
ODBC 驱动程序不支持所需的属性。
2005-12-04 00:03
yslhn
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2005-11-29
收藏
得分:0 
dim thedate
thedate="2005-12"
thedate=thedate&"-12 00:00:00"
sql="select * from main where datediff('m',intime,'"&thedate&"')=0
sql=sql&" order by shiyongren asc"
Set rs=Server.CreateObject("adodb.recordset")
rs.Open sql,conn,1,1
这样就没有问题
谁能告诉我啊
2005-12-04 00:16
快速回复:求助 一个时间查询 问题 急急
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.017430 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved