日期:2014-05-17 浏览次数:20579 次
--1、
select * from XK where class_type='旅游系' and name like '李%'
--2、
select count(1) from XK where class_type='00数据库'
--3、彭少帆没有重名
select count(课程) from XK where name='彭少帆'
--4、
select *,count(1) from XK where class_type='旅游系'
--5、
select count(1) from XK group by class
--6、
select max(a) from (select count(1)as a from XK group by class)c group by a