mirror of
https://github.com/grafana/grafana.git
synced 2025-07-29 23:52:19 +08:00
14 lines
164 B
SQL
Executable File
14 lines
164 B
SQL
Executable File
SELECT
|
|
"namespace",
|
|
"group",
|
|
"resource",
|
|
COUNT(*),
|
|
MAX("resource_version")
|
|
FROM "resource"
|
|
WHERE 1 = 1
|
|
GROUP BY
|
|
"namespace",
|
|
"group",
|
|
"resource"
|
|
;
|