以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- [求助]加载相同账号的最后一行 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=153850) |
-- 作者:有点蓝 -- 发布时间:2020/8/25 14:03:00 -- 这种只能使用sql处理 select a.* from {股金信息表} as a inner join (select 账号,max([_Identify]) as id from {股金信息表} group by 账号) as b on a.[_Identify] = b.id
|
-- 作者:有点蓝 -- 发布时间:2020/8/26 10:54:00 -- 不能在原表加载,建一个查询表:http://www.foxtable.com/webhelp/topics/2329.htm |