ACC数据库收索的问题

来源:百度知道 编辑:UC知道 时间:2024/05/14 19:45:21
select top5 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

我哪些错了~~帮看下 ~~
这两个都不对啊!在
http://edu.itbulo.com/200606/101045.htm
这个地方 都不能通过 我看不到下面啊~~

如果是在程序中调用,可以换成以下试试

select top5 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

select top5 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