23 个解决方案
#1
把2个表结构和新表结构贴出来。应该能帮帮你
#2
过滤重复的用户名用distinc.如 select distinc username from usrs
新建表用:create table tablename
Fieldname dataclass datalength
新建表用:create table tablename
Fieldname dataclass datalength
#3
distinc改为distinct
#4
表一:学生编号,卡号,日期,操作时间
表二:卡号,日期
表三(新表):学生编号,卡号,日期,操作时间.
表一和表二通过卡号进行关联查询,取得表二中卡号和表一中卡号相同的记录中日期最小的那个插入到表三中,也就是过滤,同一张卡号在某一段时间内的重复记录.
请得清楚吗?
上次就是得你老冯你的帮忙才解决问题的,希望这次也能得到你的帮助.
表二:卡号,日期
表三(新表):学生编号,卡号,日期,操作时间.
表一和表二通过卡号进行关联查询,取得表二中卡号和表一中卡号相同的记录中日期最小的那个插入到表三中,也就是过滤,同一张卡号在某一段时间内的重复记录.
请得清楚吗?
上次就是得你老冯你的帮忙才解决问题的,希望这次也能得到你的帮助.
#5
to:wangorg()
这样我做过,用distinc卡号的话,其他字段的值不同的话卡号还是会重复,谢谢.
这样我做过,用distinc卡号的话,其他字段的值不同的话卡号还是会重复,谢谢.
#6
好的。马上给你答案。
#7
select Distinct A.学生编号,A.卡号,A.日期,A.操作时间 from 表一 A, 表二 B Where A.卡号 = A.卡号 AND not Exists (Select * from 表一 Where 表一.学生编号=A.学生编号 AND 表一.日期 < A.日期 )
#8
select Distinct A.学生编号,A.卡号,A.日期,A.操作时间 from 表一 A, 表二 B Where A.卡号 = B.卡号 AND not Exists (Select * from 表一 Where 表一.学生编号=A.学生编号 AND 表一.日期 < A.日期 )
#9
好,今晚我看一下.现在头晕得很~
#10
not Exists (Select * from 表一 Where 表一.学生编号=A.学生编号 AND 表一.日期 < A.日期 )
老冯还在吗?你这句是什么意思?
老冯还在吗?你这句是什么意思?
#11
去满足条件的最小日期的记录
#12
老冯Select * from 表一 Where 表一.学生编号=A.学生编号 AND 表一.日期 < A.日期
你这里的表一和A是不是同一个表?怎么多了一个A出来,?
你这里的表一和A是不是同一个表?怎么多了一个A出来,?
#13
select distinct 字段 from
(select 字段 from a
Union all
select 字段 from b
)
即是新表
(select 字段 from a
Union all
select 字段 from b
)
即是新表
#14
谢谢,但上面的都实现不了我想要的.
我现在遇到了新的问题
我的数据库是用ACCESS有个时间字段是短日期的 插入的时候就 时间一过16:00就出错.说是类型不匹配~~请各位帮帮忙
我现在遇到了新的问题
我的数据库是用ACCESS有个时间字段是短日期的 插入的时候就 时间一过16:00就出错.说是类型不匹配~~请各位帮帮忙
#15
把你的原始数据和你想要的结果贴出来一下,不然我们确实不好理解您的意图
#16
表:download
卡号 日期 时间
25478 2006-11-27 16:01
25698 2006-11-27 18:01
25568 2006-11-27 16:01
25478 2006-11-27 16:01
25568 2006-11-27 16:01
25568 2006-11-27 18:01
想要统计一下每一张卡号在某一时间段的打卡时间,只要最早的那条.插入一个新表.例如25568这个卡号就只要25568 2006-11-27 16:01这条记录.
我自己写了个循环到这里时间条件一过16:00就出错:
with ADOQuery2 do
begin
Close;
sql.Clear;
sql.Add('insert into 上课时间_temp select top 1 * from download where download.卡号=:tempcard and 日期=:tempdate and 时间>=:amf and 时间<=:amt order by 时间 asc');
Parameters.ParamByName('amf').Value:=strtotime(amf);
Parameters.ParamByName('amt').Value:=strtotime(amt);
Parameters.ParamByName('tempdate').Value:=tempdate;
Parameters.ParamByName('tempcard').Value:=tempcard;
Execsql;
showmessage(amf);
Close;
sql.Clear;
sql.Add('insert into 上课时间_temp select top 1 * from download where download.卡号=:tempcard and 日期=:tempdate and 时间>=:pm1f and 时间<=:pm1t order by 时间 asc');
Parameters.ParamByName('pm1f').Value:=strtotime(amf);
Parameters.ParamByName('pm1t').Value:=strtotime('16:00');//本来是strtotime(pm1t)的pm1t='18:00'
Parameters.ParamByName('tempdate').Value:=tempdate;
Parameters.ParamByName('tempcard').Value:=tempcard;
showmessage(pm1t);
Execsql;
Close;
sql.Clear;
sql.Add('insert into 上课时间_temp select top 1 * from download where download.卡号=:tempcard and 日期=:tempdate and 时间>=:pm2f and 时间<=:pm2t');
Parameters.ParamByName('pm2f').Value:=strtotime(pm2f);
Parameters.ParamByName('pm2t').Value:=strtotime(pm2t);
Parameters.ParamByName('tempdate').Value:=tempdate;
Parameters.ParamByName('tempcard').Value:=tempcard;
Execsql;
卡号 日期 时间
25478 2006-11-27 16:01
25698 2006-11-27 18:01
25568 2006-11-27 16:01
25478 2006-11-27 16:01
25568 2006-11-27 16:01
25568 2006-11-27 18:01
想要统计一下每一张卡号在某一时间段的打卡时间,只要最早的那条.插入一个新表.例如25568这个卡号就只要25568 2006-11-27 16:01这条记录.
我自己写了个循环到这里时间条件一过16:00就出错:
with ADOQuery2 do
begin
Close;
sql.Clear;
sql.Add('insert into 上课时间_temp select top 1 * from download where download.卡号=:tempcard and 日期=:tempdate and 时间>=:amf and 时间<=:amt order by 时间 asc');
Parameters.ParamByName('amf').Value:=strtotime(amf);
Parameters.ParamByName('amt').Value:=strtotime(amt);
Parameters.ParamByName('tempdate').Value:=tempdate;
Parameters.ParamByName('tempcard').Value:=tempcard;
Execsql;
showmessage(amf);
Close;
sql.Clear;
sql.Add('insert into 上课时间_temp select top 1 * from download where download.卡号=:tempcard and 日期=:tempdate and 时间>=:pm1f and 时间<=:pm1t order by 时间 asc');
Parameters.ParamByName('pm1f').Value:=strtotime(amf);
Parameters.ParamByName('pm1t').Value:=strtotime('16:00');//本来是strtotime(pm1t)的pm1t='18:00'
Parameters.ParamByName('tempdate').Value:=tempdate;
Parameters.ParamByName('tempcard').Value:=tempcard;
showmessage(pm1t);
Execsql;
Close;
sql.Clear;
sql.Add('insert into 上课时间_temp select top 1 * from download where download.卡号=:tempcard and 日期=:tempdate and 时间>=:pm2f and 时间<=:pm2t');
Parameters.ParamByName('pm2f').Value:=strtotime(pm2f);
Parameters.ParamByName('pm2t').Value:=strtotime(pm2t);
Parameters.ParamByName('tempdate').Value:=tempdate;
Parameters.ParamByName('tempcard').Value:=tempcard;
Execsql;
#17
我现在在外地客户这边,这里没有装Access. 待明天装ACCESS后,一定给你一个满意的答案。
16:00的问题
http://community.csdn.net/Expert/topic/5198/5198304.xml?temp=.430279
明天一并测试。
16:00的问题
http://community.csdn.net/Expert/topic/5198/5198304.xml?temp=.430279
明天一并测试。
#18
谢谢老冯,这个问题今天早上我自己已经解决了.
不过我想请问ACCESS中的短时间 在delphi中它会自动加上1899-12-31请问有没有办法解决?
不过我想请问ACCESS中的短时间 在delphi中它会自动加上1899-12-31请问有没有办法解决?
#19
其实在时间问题上我还遇到过很多"奇怪"的问题, 后来如果没有特殊情况,我把需要时间的字段类型全部设为字符型.就万事大吉了.(这全是经验,仅供参考)
最奇怪的,至今我也不明白为什么的短日期"毛病":
比如我存进去的时候是"07:00:00',几天之内都是好好的,可是不知过了多久,看数据库就变成了"06:59:59",而我的用户恰恰只需要计算到分.所以就相差了整整一分钟.
从此以后我一律用字符型来代替.
最奇怪的,至今我也不明白为什么的短日期"毛病":
比如我存进去的时候是"07:00:00',几天之内都是好好的,可是不知过了多久,看数据库就变成了"06:59:59",而我的用户恰恰只需要计算到分.所以就相差了整整一分钟.
从此以后我一律用字符型来代替.
#20
是啊,我也要比较时间的所以得是时间的.
#21
时间字段是字符的话,如果要跟时间比较要怎么做呢?
#22
一样的比较,没有任何变化.系统会自动转换的.
#23
还是有一些问题.谢谢老冯和各位的帮忙.~结贴好了.
#1
把2个表结构和新表结构贴出来。应该能帮帮你
#2
过滤重复的用户名用distinc.如 select distinc username from usrs
新建表用:create table tablename
Fieldname dataclass datalength
新建表用:create table tablename
Fieldname dataclass datalength
#3
distinc改为distinct
#4
表一:学生编号,卡号,日期,操作时间
表二:卡号,日期
表三(新表):学生编号,卡号,日期,操作时间.
表一和表二通过卡号进行关联查询,取得表二中卡号和表一中卡号相同的记录中日期最小的那个插入到表三中,也就是过滤,同一张卡号在某一段时间内的重复记录.
请得清楚吗?
上次就是得你老冯你的帮忙才解决问题的,希望这次也能得到你的帮助.
表二:卡号,日期
表三(新表):学生编号,卡号,日期,操作时间.
表一和表二通过卡号进行关联查询,取得表二中卡号和表一中卡号相同的记录中日期最小的那个插入到表三中,也就是过滤,同一张卡号在某一段时间内的重复记录.
请得清楚吗?
上次就是得你老冯你的帮忙才解决问题的,希望这次也能得到你的帮助.
#5
to:wangorg()
这样我做过,用distinc卡号的话,其他字段的值不同的话卡号还是会重复,谢谢.
这样我做过,用distinc卡号的话,其他字段的值不同的话卡号还是会重复,谢谢.
#6
好的。马上给你答案。
#7
select Distinct A.学生编号,A.卡号,A.日期,A.操作时间 from 表一 A, 表二 B Where A.卡号 = A.卡号 AND not Exists (Select * from 表一 Where 表一.学生编号=A.学生编号 AND 表一.日期 < A.日期 )
#8
select Distinct A.学生编号,A.卡号,A.日期,A.操作时间 from 表一 A, 表二 B Where A.卡号 = B.卡号 AND not Exists (Select * from 表一 Where 表一.学生编号=A.学生编号 AND 表一.日期 < A.日期 )
#9
好,今晚我看一下.现在头晕得很~
#10
not Exists (Select * from 表一 Where 表一.学生编号=A.学生编号 AND 表一.日期 < A.日期 )
老冯还在吗?你这句是什么意思?
老冯还在吗?你这句是什么意思?
#11
去满足条件的最小日期的记录
#12
老冯Select * from 表一 Where 表一.学生编号=A.学生编号 AND 表一.日期 < A.日期
你这里的表一和A是不是同一个表?怎么多了一个A出来,?
你这里的表一和A是不是同一个表?怎么多了一个A出来,?
#13
select distinct 字段 from
(select 字段 from a
Union all
select 字段 from b
)
即是新表
(select 字段 from a
Union all
select 字段 from b
)
即是新表
#14
谢谢,但上面的都实现不了我想要的.
我现在遇到了新的问题
我的数据库是用ACCESS有个时间字段是短日期的 插入的时候就 时间一过16:00就出错.说是类型不匹配~~请各位帮帮忙
我现在遇到了新的问题
我的数据库是用ACCESS有个时间字段是短日期的 插入的时候就 时间一过16:00就出错.说是类型不匹配~~请各位帮帮忙
#15
把你的原始数据和你想要的结果贴出来一下,不然我们确实不好理解您的意图
#16
表:download
卡号 日期 时间
25478 2006-11-27 16:01
25698 2006-11-27 18:01
25568 2006-11-27 16:01
25478 2006-11-27 16:01
25568 2006-11-27 16:01
25568 2006-11-27 18:01
想要统计一下每一张卡号在某一时间段的打卡时间,只要最早的那条.插入一个新表.例如25568这个卡号就只要25568 2006-11-27 16:01这条记录.
我自己写了个循环到这里时间条件一过16:00就出错:
with ADOQuery2 do
begin
Close;
sql.Clear;
sql.Add('insert into 上课时间_temp select top 1 * from download where download.卡号=:tempcard and 日期=:tempdate and 时间>=:amf and 时间<=:amt order by 时间 asc');
Parameters.ParamByName('amf').Value:=strtotime(amf);
Parameters.ParamByName('amt').Value:=strtotime(amt);
Parameters.ParamByName('tempdate').Value:=tempdate;
Parameters.ParamByName('tempcard').Value:=tempcard;
Execsql;
showmessage(amf);
Close;
sql.Clear;
sql.Add('insert into 上课时间_temp select top 1 * from download where download.卡号=:tempcard and 日期=:tempdate and 时间>=:pm1f and 时间<=:pm1t order by 时间 asc');
Parameters.ParamByName('pm1f').Value:=strtotime(amf);
Parameters.ParamByName('pm1t').Value:=strtotime('16:00');//本来是strtotime(pm1t)的pm1t='18:00'
Parameters.ParamByName('tempdate').Value:=tempdate;
Parameters.ParamByName('tempcard').Value:=tempcard;
showmessage(pm1t);
Execsql;
Close;
sql.Clear;
sql.Add('insert into 上课时间_temp select top 1 * from download where download.卡号=:tempcard and 日期=:tempdate and 时间>=:pm2f and 时间<=:pm2t');
Parameters.ParamByName('pm2f').Value:=strtotime(pm2f);
Parameters.ParamByName('pm2t').Value:=strtotime(pm2t);
Parameters.ParamByName('tempdate').Value:=tempdate;
Parameters.ParamByName('tempcard').Value:=tempcard;
Execsql;
卡号 日期 时间
25478 2006-11-27 16:01
25698 2006-11-27 18:01
25568 2006-11-27 16:01
25478 2006-11-27 16:01
25568 2006-11-27 16:01
25568 2006-11-27 18:01
想要统计一下每一张卡号在某一时间段的打卡时间,只要最早的那条.插入一个新表.例如25568这个卡号就只要25568 2006-11-27 16:01这条记录.
我自己写了个循环到这里时间条件一过16:00就出错:
with ADOQuery2 do
begin
Close;
sql.Clear;
sql.Add('insert into 上课时间_temp select top 1 * from download where download.卡号=:tempcard and 日期=:tempdate and 时间>=:amf and 时间<=:amt order by 时间 asc');
Parameters.ParamByName('amf').Value:=strtotime(amf);
Parameters.ParamByName('amt').Value:=strtotime(amt);
Parameters.ParamByName('tempdate').Value:=tempdate;
Parameters.ParamByName('tempcard').Value:=tempcard;
Execsql;
showmessage(amf);
Close;
sql.Clear;
sql.Add('insert into 上课时间_temp select top 1 * from download where download.卡号=:tempcard and 日期=:tempdate and 时间>=:pm1f and 时间<=:pm1t order by 时间 asc');
Parameters.ParamByName('pm1f').Value:=strtotime(amf);
Parameters.ParamByName('pm1t').Value:=strtotime('16:00');//本来是strtotime(pm1t)的pm1t='18:00'
Parameters.ParamByName('tempdate').Value:=tempdate;
Parameters.ParamByName('tempcard').Value:=tempcard;
showmessage(pm1t);
Execsql;
Close;
sql.Clear;
sql.Add('insert into 上课时间_temp select top 1 * from download where download.卡号=:tempcard and 日期=:tempdate and 时间>=:pm2f and 时间<=:pm2t');
Parameters.ParamByName('pm2f').Value:=strtotime(pm2f);
Parameters.ParamByName('pm2t').Value:=strtotime(pm2t);
Parameters.ParamByName('tempdate').Value:=tempdate;
Parameters.ParamByName('tempcard').Value:=tempcard;
Execsql;
#17
我现在在外地客户这边,这里没有装Access. 待明天装ACCESS后,一定给你一个满意的答案。
16:00的问题
http://community.csdn.net/Expert/topic/5198/5198304.xml?temp=.430279
明天一并测试。
16:00的问题
http://community.csdn.net/Expert/topic/5198/5198304.xml?temp=.430279
明天一并测试。
#18
谢谢老冯,这个问题今天早上我自己已经解决了.
不过我想请问ACCESS中的短时间 在delphi中它会自动加上1899-12-31请问有没有办法解决?
不过我想请问ACCESS中的短时间 在delphi中它会自动加上1899-12-31请问有没有办法解决?
#19
其实在时间问题上我还遇到过很多"奇怪"的问题, 后来如果没有特殊情况,我把需要时间的字段类型全部设为字符型.就万事大吉了.(这全是经验,仅供参考)
最奇怪的,至今我也不明白为什么的短日期"毛病":
比如我存进去的时候是"07:00:00',几天之内都是好好的,可是不知过了多久,看数据库就变成了"06:59:59",而我的用户恰恰只需要计算到分.所以就相差了整整一分钟.
从此以后我一律用字符型来代替.
最奇怪的,至今我也不明白为什么的短日期"毛病":
比如我存进去的时候是"07:00:00',几天之内都是好好的,可是不知过了多久,看数据库就变成了"06:59:59",而我的用户恰恰只需要计算到分.所以就相差了整整一分钟.
从此以后我一律用字符型来代替.
#20
是啊,我也要比较时间的所以得是时间的.
#21
时间字段是字符的话,如果要跟时间比较要怎么做呢?
#22
一样的比较,没有任何变化.系统会自动转换的.
#23
还是有一些问题.谢谢老冯和各位的帮忙.~结贴好了.