Files
bl/help/查询在线时长.sql

10 lines
358 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

SELECT
player_id,
(data->>'online_time')::int AS online_time
FROM "player_info"
-- 替换?操作符用jsonb_exists函数判断online_time字段是否存在
WHERE
jsonb_exists(data, 'online_time') -- 等价于 data ? 'online_time'无占位符冲突
AND (data->>'online_time')::int > 0
-- 按在线时间降序排序
ORDER BY online_time DESC;