What does the slash mean in an SQL query?

mysql, sql

Solution

It's a division sign. It's dividing two numbers.

Problem

What does the slash character mean in this query? This is being used with a MySql database. ``` SELECT Channel, COUNT(Channel) AS Total, COUNT(Channel) / (SELECT COUNT(*) FROM UserClicks WHERE (Date > '2009-12-1' AND Date < '2010-1-1') AND RoleType='member' ) AS Percent FROM UserClicks WHERE (Date > '2009-12-1' AND Date < '2010-1-1') AND RoleType='member' GROUP BY Channel ORDER BY Total DESC ``` Update: sorry, stupid question! =P

Original source