SELECT COUNT(*) FROM Table1 WHERE user = "carl" AND ans = "yes"
then i want to divide the output of this query to another query, for example the output is 10. so it will be like:
10 / SELECT COUNT(*) From Table1 WHERE user = "carl"
How is the right syntax for this?
Thank You