English 中文(简体)
利用诸如MySQL、CSV等数据垃圾场对交易数据进行图像的最容易的方法[封闭]
原标题:What is the easiest way to visualize transactional data utilizing using a data dump like MySQL, CSV etc etc [closed]
Closed. This question needs to be more focused. It is not currently accepting answers.

更新问题,只通过

Closed 6 years ago.

基本上,我希望能够提供数据,并看到图表显示基于x交易量等的数据和/或Q表等信息。

它不是基于客户或网络的。 开放源将巨大,但商业也受到罚款。

最佳回答

查阅myDBR。 它使你能够方便地编写报告,并照顾到报告的内容。

仅编写报告时,你就写了储存的程序(包括编辑或你喜欢的银工具)。 储存程序产生的数据随后由我的DBR加以解释。 举例来说,为你每月的销售制作一张图表,你将写以下代码:

select  dbr.chart ,  Column ,  2D Column ;
select Name, SUM(Items)
FROM demo.TestTable
GROUP BY Name;

现有各种图表类型和组合选择。

我的DBR社区版本是免费的,保险费只有129欧元/年。

问题回答




相关问题
SQL SubQuery getting particular column

I noticed that there were some threads with similar questions, and I did look through them but did not really get a convincing answer. Here s my question: The subquery below returns a Table with 3 ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

php return a specific row from query

Is it possible in php to return a specific row of data from a mysql query? None of the fetch statements that I ve found return a 2 dimensional array to access specific rows. I want to be able to ...

Character Encodings in PHP and MySQL

Our website was developed with a meta tag set to... <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> This works fine for M-dashes and special quotes, etc. However, I ...

Pagination Strategies for Complex (slow) Datasets

What are some of the strategies being used for pagination of data sets that involve complex queries? count(*) takes ~1.5 sec so we don t want to hit the DB for every page view. Currently there are ~...

Averaging a total in mySQL

My table looks like person_id | car_id | miles ------------------------------ 1 | 1 | 100 1 | 2 | 200 2 | 3 | 1000 2 | 4 | 500 I need to ...

热门标签