The SPD is programmed to JEDEC standard latency DDR3-1333 timing of 9-9-9 at 1.5V
select id, count(0) as match_count from tablename
where keyword in (...)
group by id
order by match_count desc
select curr.user_id, (curr.exp - coalesce(lastr.exp, 0)) as diff
from user_exp curr
left join user_exp lastr ON curr.user_id = lastr.user_id and lastr.date = CURRENT_DATE - interval '1week'
where curr.date = CURRENT_DATE
order by diff desc