Skip to content

Instantly share code, notes, and snippets.

@adxrgh
Created June 15, 2017 07:52
Show Gist options
  • Save adxrgh/f0e66a8e2d1467e1289300a68273b019 to your computer and use it in GitHub Desktop.
Save adxrgh/f0e66a8e2d1467e1289300a68273b019 to your computer and use it in GitHub Desktop.
[选取历史最低价]#tags:sql
create view lowest1 as
select * from stockprice where low in (select min(low) from stockprice group by secid)
group by secid;
select * from lowest1
where tradedate>'20170501';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment