Первоначальная реализация

This commit is contained in:
2025-10-19 19:59:28 +03:00
parent a493750341
commit 48911d7f62
15 changed files with 1479 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
customer_id,name,email,join_date
1,Alice Johnson,alice@example.com,2023-01-15
2,Bob Smith,bob@example.com,2023-02-20
3,Charlie Brown,charlie@example.com,2023-03-10
4,Diana Prince,diana@example.com,2023-04-05
5,Eve Wilson,eve@example.com,2023-05-12
1 customer_id name email join_date
2 1 Alice Johnson alice@example.com 2023-01-15
3 2 Bob Smith bob@example.com 2023-02-20
4 3 Charlie Brown charlie@example.com 2023-03-10
5 4 Diana Prince diana@example.com 2023-04-05
6 5 Eve Wilson eve@example.com 2023-05-12