随机查询指定人员的一条未读消息
帮助消息表 s_msg_hint
帮助消息id smh_id number(20) pk
帮助消息内容 smh_text varchar2(200)
人员帮助消息表 s_hintpeople
人员id shp_uid varchar2(20) pk
当前帮助消息id smh_id number(20) pk fk
如果为已读消息会在 人员帮助消息表里面生成记录
select
*
from
(select
smh.*,
nvl2( shp.smh_id,1,0) as status --0:未读 1:已读
from
s_msg_hint smh
left join s_hintpeople shp
on smh.smh_id = shp.smh_id
and shp.shp_uid = 'p_chencc'
order by
dbms_random.value --随机数值排序
)
where
status = 0 and --未读消息
rownum <= 1 --取一条
查询随机的记录的各个数据库的语法
1. oracle,随机查询10条
select * from
(
select * from table1
order by dbms_random.value
)
where rownum <= 20;
2.ms sql server,随机查询10条
select top 10 * from table1 order by newid()
3.my sql:,随机查询10条
select * from table1 order by rand() limit 20
posted on 2013-11-02 11:35
sanmao 阅读(791)
评论(2) 编辑 收藏