请写出在class和stu表中查找满足如下条件的记录的sql语句:1)表class中的字段c_id与stu表中的s_cid为关联字段2)返回字段 c_name,s_no,s_name3)查询条件 c_stu 字段值大于20,并且s_no第二到四位是"006"这三个字符4)查询结果按s_no倒排序谢了~~~~~
where c_stu>20 and s_no like '_006%' order by s_no desc 使用模糊查询的关键字like~~~