Can Stardog transpose the query result?

Hi,
Does Stardog support the function like pivot?

For example:

| Header    | Total     |
|--------   |-------    |
|           |           |
| A         | 5         |
|           |           |
| B         | 6         |
|           |           |
| C         | 7         |
|           |           |
| D         | 8         |

I want to transpose the result somehow as follows:

| Header    | A     | B     | C     | D     |
|--------   |---    |---    |---    |---    |
| Total     | 5     | 6     | 7     | 8     |

Thanks.

No, this would need to be done on the client side (or via a custom server extension).

Best,
Pavel

Understand, Thanks very much.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.