sql语句查询解析:sql语句 select distinct(title) from books where title like '%c%' order by title 这
我已经解决了在这里呢小弟我还是要谢谢各位的奉献精神正确的写法:select*from(selectrownum=row_number()over(orderbytitle...
我已经解决了 在这里呢 小弟我还是要谢谢各位的奉献精神
正确的写法:select * from (select rownum=row_number() over(order by title),* from books)b where rownum <=10 展开
正确的写法:select * from (select rownum=row_number() over(order by title),* from books)b where rownum <=10 展开
5个回答
展开全部
从books表中查询title,并且title中包含c,且title不能重复,按title排序。
追问
我的意思是在这个语句中只显示10条呢
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select distinct(title) from books where title like '%c%' and rownum <= 10 order by title
这个语句中只显示10条
这个语句中只显示10条
追问
rownum貌似没有,好像是一个函数,这个函数没用过 ,能不能再改改啊 先谢谢啦
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
从BOOKS表中查询出字段TITLE中含有C的不同记录,并按TITLE顺序排序
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select TOP 10 distinct(title) from books where title like '%c%' order by title
追问
不行 这种写法是错的
会报 关键字 'distinct' 附近有语法错误。
追答
这个可以了
select TOP 10 title from books where title like '%c%' GROUP BY title order by title
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select top 10 *
from
(
select distinct(title) from books where title like '%c%' order by title
)
from
(
select distinct(title) from books where title like '%c%' order by title
)
追问
报错:除非另外还指定了 TOP 或 FOR XML,否则,ORDER BY 子句在视图、内联函数、派生表、子查询和公用表表达式中无效。
追答
1.create view aa
as
select distinct(title) from books where title like '%c%' order by title
2. select top 10 *
from aa
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询