关于mysql查询问题。

https://img1.mukewang.com/5b4b0daa00014b3307670220.jpg

如图两组数据。(都在同一个表里)。。。【data表】

现在想查询Reuters ----openprice的数据  与 CMB(web)-----openPrice的数据之差 (Reuters与CMB(web)时间相同)。。该怎么查询啊???数据多,这只是其中4条时间相同的数据。。。

Reuters - CMB(web)             time_start

1.04645 - 1.0467            (2016-12-19 15:30:00)

1.04655 - 1.0467           (2016-12-19 15:30:01)

1.0465 - 1.0467            (2016-12-19 15:30:02)

1.04655- 1.0467            (2016-12-19 15:30:03)


LEATH
浏览 465回答 1
1回答

月关宝盒

select time_start,(sum(if(type = 'CMB(web)', openprice, 0)) - sum(if(type = 'Reuters', openprice, 0))) from data group by time_start
打开App,查看更多内容
随时随地看视频慕课网APP