> 数据库 > SQL Server 2008 >

查询姓“李”的老师的个数;

select count(distinct(Tname))
from Teacher
where Tname like ‘李%’; (责任编辑:IT)