gpt4 book ai didi

mysql - 是否可以仅使用单个查询来获得所需的结果?

转载 作者:行者123 更新时间:2023-11-29 07:26:20 25 4
gpt4 key购买 nike

这是我的数据结构

CREATE TABLE `historical_data` (
`symbol_name` varchar(70) DEFAULT NULL,
`current_day` date DEFAULT NULL,
`open_val` decimal(15,2) DEFAULT NULL,
`high_val` decimal(15,2) DEFAULT NULL,
`low_val` decimal(15,2) DEFAULT NULL,
`close_val` decimal(15,2) DEFAULT NULL,
`last_val` decimal(15,2) DEFAULT NULL,
`prevclose_val` decimal(15,2) DEFAULT NULL
);



INSERT INTO `historical_data` (`symbol_name`, `current_day`, `open_val`, `high_val`, `low_val`, `close_val`, `last_val`, `prevclose_val`) VALUES
('WOCKPHARMA', '2015-12-11', 1611.00, 1620.00, 1570.30, 1581.25, 1579.00, 1602.10),
('YESBANK', '2015-12-11', 709.00, 713.70, 672.25, 680.60, 683.45, 707.10),
('WOCKPHARMA', '2015-12-14', 1572.50, 1584.70, 1545.00, 1559.55, 1557.60, 1581.25),
('YESBANK', '2015-12-14', 679.10, 689.00, 668.00, 683.25, 683.65, 680.60),
('WOCKPHARMA', '2015-12-15', 1564.70, 1580.50, 1558.00, 1572.10, 1567.50, 1559.55),
('YESBANK', '2015-12-15', 688.00, 694.20, 675.75, 691.35, 688.25, 683.25),
('WOCKPHARMA', '2015-12-16', 1581.50, 1617.90, 1578.00, 1587.15, 1589.00, 1572.10),
('YESBANK', '2015-12-16', 697.00, 710.60, 694.25, 698.55, 699.15, 691.35),
('WOCKPHARMA', '2015-12-17', 1596.10, 1642.00, 1576.05, 1628.20, 1636.80, 1587.15),
('YESBANK', '2015-12-17', 708.00, 723.75, 705.70, 721.10, 720.00, 698.55),
('WOCKPHARMA', '2015-12-18', 1630.00, 1654.85, 1620.30, 1627.55, 1631.00, 1628.20),
('YESBANK', '2015-12-18', 717.90, 727.45, 713.60, 718.70, 720.20, 721.10);

并根据我目前正在使用两个查询进行的当前数据找出 yield 最高的人

第一个查询告诉我数据库中存在的最后日期

select current_day from historical_data order by current_day desc limit 1

在第二个查询中,我使用从第一个查询中获取的最后日期

select symbol_name , current_day ,close_val,prevclose_val, (close_val-prevclose_val) as toploosers   from  historical_data  where current_day = ?  order by toploosers desc limit 10

这是我的sqlfiddle,

您能否告诉我如何实现这一目标 http://sqlfiddle.com/#!9/3693b

最佳答案

SELECT symbol_name,
current_day,
close_val,
prevclose_val,
(close_val-prevclose_val) AS toploosers
FROM historical_data
WHERE current_day =
(SELECT max(current_day)
FROM historical_data)
ORDER BY toploosers DESC LIMIT 10

关于mysql - 是否可以仅使用单个查询来获得所需的结果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34392518/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com