sqlserver2008从一个表中模糊查询并分页 50
select*frombbswheretitlelike'%呵呵%';再从这个结果中查询出前10条数据。这样的要求的SQL语句怎么写?我需要做这样一个分页!...
select * from bbs where title like '%呵呵%';再从这个结果中查询出前10条数据。
这样的要求的SQL语句怎么写?
我需要做这样一个分页! 展开
这样的要求的SQL语句怎么写?
我需要做这样一个分页! 展开
5个回答
展开全部
select * from (
select * from(
select b.*,rownum rn from bbs b where title like '%呵呵%'
and rownum<=10)
where rn<=分页的上限)
where rn>分页的下限
select * from(
select b.*,rownum rn from bbs b where title like '%呵呵%'
and rownum<=10)
where rn<=分页的上限)
where rn>分页的下限
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select * from (
select * from(
select b.*,rownum rn from bbs b where title like '%呵呵%'
and rownum<=10)
where rn<=分页的上限)
where rn>分页的下限
select * from(
select b.*,rownum rn from bbs b where title like '%呵呵%'
and rownum<=10)
where rn<=分页的上限)
where rn>分页的下限
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
加个条件:where rownum <= 10
select * from bbs where title like '%呵呵%'
and rownum <= 10;
select * from bbs where title like '%呵呵%'
and rownum <= 10;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select top 10 * from bbs where title like '%呵呵%'
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select * from bbs where title like '%呵呵%' limit 0,10
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |