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为倒排序 展开
帮我看看这语句那里错了,查询class表中的 c_name,c_stu字段, c_name字段中查找带有百度的所有记录,c_stu字段中查值大于30且c_type字段值为true,最后返回c_stu值为正排序,c_type为倒排序 展开
4个回答
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
这里还要看你的这几个字段都是什么类型的才能给出更好的答案.
这里还要看你的这几个字段都是什么类型的才能给出更好的答案.
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
你的少了个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=关键字)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询