Skip to content

Commit 1bc5436

Browse files
committed
add Country Codes solution
1 parent 7acd414 commit 1bc5436

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

country-codes.sql

+5
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)