We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93db6f8 commit b71ef7bCopy full SHA for b71ef7b
SQL/06주차/JW_Confirmation_Rate.sql
@@ -0,0 +1,9 @@
1
+SELECT
2
+ A.user_id
3
+ , ROUND(AVG(IF(B.action = 'confirmed', 1, 0)), 2) confirmation_rate
4
+FROM
5
+ Signups A
6
+ LEFT JOIN Confirmations B
7
+ ON A.user_id = B.user_id
8
+GROUP BY
9
0 commit comments