this panel allows you to enter the query body and make some global choices on the dashbaord behaviour.
Usually the data source is the moodle database itself. By the way, there is given provision to dashboard some external data coming from an extra PostGreSQL remote database.
You may display:
In some circonstances you may choose to display additionnaly:
Here you can enter the full body of the SQL query, according to some writing rules:
A SQL result cannot have a variable set of output columns, by construction of the SQL engine. Thus SQL is not a straight method to query matricial data. Data result rotation is a way to transform a flat SELECT output into a data matrix with two dynamic dimensions. this feature is usefull when getting query output that provides multiple data series in one result, and you'll need to separate each serie in a graph. Rotating results will use a defined “pivot” column for defining the dynamically generated output columns. The data will be rearranged to keep the other dimensions consistant, while distributing the actual data in the final matrix.
Say you are willing to extract the numer of users by authentication method AND by country:
SELECT CONCAT(country, '-', auth) as pkey, country as cn, auth as auth, COUNT(*) as num FROM {user} GROUP BY CONCAT(country, '-', auth)
In standard SQL this query would provide you a flat output result with one primarykey, two dimensional attributes and one data column:
pkey | cn | auth | num |
---|---|---|---|
FR-manual | FR | manual | 45 |
FR-mnet | FR | mnet | 4 |
FR-cas | FR | cas | 1754 |
EN-manual | EN | manual | 22 |
EN-mnet | EN | mnet | 23 |
EN-cas | EN | cas | 98 |
CH-manual | CH | manual | 12 |
CH-mnet | CH | mnet | 5 |
CH-cas | CH | cas | 302 |
Say now we would like to feed a multiple series graph that will show the country comparison grpah for each auth method. To do that, we need to transform the linear initial result into a matrix that will feed the graph series. We need to get the following form of the same data:
pkey | auth | FR | EN | CH |
---|---|---|---|---|
manual | manual | 45 | 22 | 12 |
mnet | mnet | 4 | 23 | 5 |
cas | cas | 1754 | 98 | 302 |
This will be easily converted into json structures that feed multiple series graphs.
The result rotation can be written as:
“ Rotate the column cn (country) around the “auth” column to distribute the num column ”.
The rotation will have to process and compute a new form of results primary keys to cope the new table organisation.
Return to the configuraiton guide index - Return to the component index - Generic query catalog - Return to the plugins index - Home