mirror of
https://github.com/grafana/grafana.git
synced 2025-08-01 02:31:50 +08:00
14 lines
236 B
SQL
Executable File
14 lines
236 B
SQL
Executable File
SELECT
|
|
"uuid",
|
|
"value",
|
|
"content_type"
|
|
FROM "resource_blob"
|
|
WHERE 1 = 1
|
|
AND "namespace" = 'x'
|
|
AND "group" = 'g'
|
|
AND "resource" = 'r'
|
|
AND "name" = 'name'
|
|
AND "uuid" = 'abc'
|
|
ORDER BY "created" DESC
|
|
LIMIT 1;
|