请问答案是什么?
我写的是:
SELECE top 5 from class where c_stu >30 and c_type=true c_name like ‘*二班*’order by c_stu asc,c_name desc
请问哪里出错了?
请问答案是什么?
我写的是:
SELECE top 5 from class where c_stu >30 and c_type=true c_name like ‘*二班*’order by c_stu asc,c_name desc
请问哪里出错了?
已经加你。教你了
第一,没有指定输出字段,应该是select top 5 c_name,c_stu from.....
第二,C_name 前面缺少and
select top 5 c_name,c_stu from class where c_stu>30 and c_type = true and c_name like '*二班*' order c_stu,c_type desc
你的 sql问题:
1、 不满足条件1,没有写需要查询的字段。
2、 c_type = true and c_name like '*二班*' 之间没有写 and