sql语句 统计name这个字段里面 值是"Stu"的数量? 求教
select count( * ) from EXAMPLE where EXAMPLE.name="Stu"
试试看
select count(name) from table_name where name = 'Stu'