今天我偶然又想既然做了进出金额的差值,还可以做一个进出数量的差值,然后就是这样
Create table xgnc(xf_id string, cnum int ) Row format delimited fields terminated by ',';
insert into table xgnc select xf.xf_id,(xf.xnum-gf.gnum)as cnum from xf join gf on xf_id=gf_id;
然后去试差值数量,
查询买入卖出交易次数大于1000次的
select * from xgnc where cnum>1000 or cnum<-1000;
这时候返回了九百多条id。我就想可能是这样的思路。