What is the section of a SQL query that will calculate the percentage of contributions from prospects?

(Total_prospects / Total_donors * 100) AS Prospects_Percent

(“Total_prospects” , “Total_donors” * 100) AS Prospects_Percent

(Total_prospects * Total_donors / 100) AS Prospects_Percent

(Total_prospects + Total_donors = 100) AS Prospects_Percent
Correct
To identify the percentage of contributions from prospects, the correct query is:
(Total_prospects / Total_donors * 100) AS Prospects_Percent