A table named books contains a column named subject. Which statement should we use to calculate the number of different subjects in the books table?
1) select count(distinct books) from subject;
2) select distinct(count books) from subject;
3) select count(distinct subject) from books;
4) select distinct(count subject) from books;