We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7acd414 commit 1bc5436Copy full SHA for 1bc5436
country-codes.sql
@@ -0,0 +1,5 @@
1
+SELECT a.customer_id,a.name,concat("+",b.country_code,a.phone_number)
2
+FROM customers as a
3
+LEFT join country_codes as b
4
+ON a.country=b.country
5
+ORDER BY a.customer_id;
0 commit comments