You're creating a SELECT statement that queries the ARTIST_CDS table. The table includes the ARTIST_NAME and CD_NAME columns. You want your statement to return the total number of rows in the table. Which COUNT function should you include in your SELECT clause? A COUNT(*) B COUNT(ARTIST_NAME) C COUNT(CD_NAME) D COUNT(ARTIST_NAME, CD_NAME)