mirror of
https://github.com/grafana/grafana.git
synced 2025-07-30 20:22:21 +08:00
7 lines
133 B
SQL
Executable File
7 lines
133 B
SQL
Executable File
SELECT id, uid, name, email, created, updated
|
|
FROM `grafana`.`team`
|
|
WHERE org_id = 0
|
|
AND uid = 'abc'
|
|
ORDER BY id asc
|
|
LIMIT 1
|