我正在设置一个MySQL查询,以显示与Excel工作表中的数据透视表相同的数据。
我编写了简单的MySQL查询来显示与Google工作表相同的日期。
https://github.com/graphitemaster/incbin
下面是我要转换为与Google工作表中显示的数据相同的SQL查询。
SELECT a.Datetime,b.Symbol,b.ProductName,a.Price,a.Volume
FROM
symbol a,product b
where a.ProductID = b.ID
ORDER BY a.Datetime
我想设置查询,该查询动态显示与Google工作表中相同的交叉表。