数据库技术与应用

在Microsoft SQL Server 2000中

use student
go
select count(*) as 学生总数
from 学生


count(*)
count这个*是什么意思?