在MYSQL数据库中,以下哪条语句用于统计BOOK表中的记录总数?
select sum(*) from book;
select max(*) from book;
select avg(*) from book;
select count(*) from book;