SQL语句条件查询排序问题

selecttop5c_name,c_stufromclasswherelikec_name='*百度*'c_stu>30andc_type=trueorderbyc_s... select top 5 c_name,c_stu from class where like c_name='*百度*' c_stu>30 and c_type=true order by c_stu asc,c_type desc
帮我看看这语句那里错了,查询class表中的 c_name,c_stu字段, c_name字段中查找带有百度的所有记录,c_stu字段中查值大于30且c_type字段值为true,最后返回c_stu值为正排序,c_type为倒排序
展开
 我来答
匿名用户
2014-01-07
展开全部
里面确实有不少的语法错误.以后要加强学习了

这里还要看你的这几个字段都是什么类型的才能给出更好的答案.
select top c_name,c_stu from class where c_name liek '%百度%' and c_stu>30 and c_type='true' order by c_stu asc,c_type desc

这里还要看你的这几个字段都是什么类型的才能给出更好的答案.
匿名用户
2014-01-07
展开全部
Like是用*号的吗?用习惯了mysql。。是用%的。呵呵
你的少了个and啦。
select top 5 c_name,c_stu from class where like c_name='%百度%' AND c_stu>30 and c_type=true order by c_stu asc,c_type desc
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2014-01-07
展开全部
select top 5 c_name,c_stu from class where c_name like '*百度*' and c_stu>30 and c_type=true order by c_stu asc,c_type desc 用了like 就不能用 相等的方法!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2014-01-07
展开全部
WHERE XX LIKE(XX=关键字)
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式