[求助]SQL题目写出来老是错的
题目:写出class表中满足以下条件的SQL语句:
1、返回字段name,stu
2、返回前5条记录
3、stu的值大于30,并且type为真,并且name字段中有“二班”两个字
4、stu正排序,type倒排序
既然是要排序 那么那个type 也要在select里吧
select top 5 name,stu,type
from class
where name like '%二班%' and tpye=true
order by stu asc,type dese