mirror of
https://github.com/grafana/grafana.git
synced 2025-07-30 18:42:29 +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`
|
|
;
|