增加展示选择

This commit is contained in:
2026-06-12 10:16:27 +08:00
parent 389c22c627
commit 81f3e1d3b6
28 changed files with 5983 additions and 131 deletions

View File

@@ -0,0 +1,12 @@
-- 查询所有用户
-- 请在 Supabase SQL Editor 中执行
SELECT
id,
username,
email,
phone,
created_at
FROM public.ak_users
ORDER BY created_at DESC
LIMIT 20;