Create cursor 表A (编号 I, 姓名 V(10))
Create cursor 表B (编号 I, 年月 N(8,2))
Insert into 表A (编号, 姓名) Values (1, '张三')
Insert into 表A (编号, 姓名) Values (2, '李四')
Insert into 表A (编号, 姓名) Values (3, '王五')
Insert into 表B (编号, 年月) Values (1, 1990.01)
Insert into 表B (编号, 年月) Values (2, 1990.02)
Insert into 表B (编号, 年月) Values (3, 2000.07)
Insert into 表B (编号, 年月) Values (2, 1990.05)
Select a.*, b.年月 from 表a a ;
inner join 表b b on a.编号 == b.编号 ;
inner join ( ;
select 编号, Max(年月) 年月 from 表b group by 编号) c ;
on b.编号 == c.编号 and b.年月 = c.年月
Create cursor 表B (编号 I, 年月 N(8,2))
Insert into 表A (编号, 姓名) Values (1, '张三')
Insert into 表A (编号, 姓名) Values (2, '李四')
Insert into 表A (编号, 姓名) Values (3, '王五')
Insert into 表B (编号, 年月) Values (1, 1990.01)
Insert into 表B (编号, 年月) Values (2, 1990.02)
Insert into 表B (编号, 年月) Values (3, 2000.07)
Insert into 表B (编号, 年月) Values (2, 1990.05)
Select a.*, b.年月 from 表a a ;
inner join 表b b on a.编号 == b.编号 ;
inner join ( ;
select 编号, Max(年月) 年月 from 表b group by 编号) c ;
on b.编号 == c.编号 and b.年月 = c.年月
这家伙很懒,啥也没留下