sql select语句的写法,哪位大侠帮忙看看,纠正下。

SELECTtop5c_name,c_stufromclasswherec_stu30andc_type=tureandc_namelike'二班'orderbyc_st... SELECT top 5 c_name,c_stu from class where c_stu30 and c_type=ture and c_name like '二班' order by c_stu asc,c_type desc
这是我在视频教程上做题,上面是我写的答案,但是报错,找不到原因,哪位大侠帮忙纠正下,不胜感激。
展开
 我来答
iceglaze
2013-01-09 · TA获得超过2639个赞
知道小有建树答主
回答量:1132
采纳率:100%
帮助的人:750万
展开全部
SELECT top 5 c_name,c_stu from class where c_stu > 30 and c_type = true and c_name like '%二班%' order by c_stu asc,c_type desc
追问
字段值中包含‘二班’要用%吗?用*可以吗?
追答
不可以,SQL的通配符是%
lulencn
2013-01-09 · 超过11用户采纳过TA的回答
知道答主
回答量:69
采纳率:100%
帮助的人:44.3万
展开全部
SELECT top 5 c_name, c_stu --取前5,及2个需要的字段
from class
where c_stu > 30 --大于30
and c_type = ture --值为‘真’
and c_name like '%二班%' --字段值中包含‘二班’
order by c_stu asc, c_type desc --排序
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友0951d78
2013-01-09 · TA获得超过1451个赞
知道小有建树答主
回答量:1727
采纳率:0%
帮助的人:1271万
展开全部
SELECT top 5 c_name,c_stu from class where c_stu > 30 and c_type=ture
and instr(c_name, '二班' ) <> 0 order by c_stu asc,c_type desc
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
sulycl
2013-01-09 · 超过10用户采纳过TA的回答
知道答主
回答量:159
采纳率:0%
帮助的人:15.9万
展开全部
C_name 中包含“二班” 使用like需要加% 改成 c_name like '%二班%' 就 应该没问题了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式