mirror of
https://github.com/grafana/grafana.git
synced 2025-07-30 20:22:21 +08:00
9 lines
296 B
SQL
Executable File
9 lines
296 B
SQL
Executable File
SELECT o.org_id, u.id, u.uid, u.login, u.email, u.name,
|
|
u.created, u.updated, u.is_service_account, u.is_disabled, u.is_admin
|
|
FROM "grafana"."user" as u JOIN "grafana"."org_user" as o ON u.id = o.user_id
|
|
WHERE o.org_id = 2 AND ( 1=2
|
|
OR uid IN ('a', 'b')
|
|
)
|
|
ORDER BY u.id asc
|
|
LIMIT 500
|