Spaces:
Sleeping
Sleeping
Commit
·
e1ba036
1
Parent(s):
6adf495
feat: add main menu options and scripts
Browse files- resources/examples.csv +7 -0
resources/examples.csv
CHANGED
|
@@ -14,3 +14,10 @@ CREATE TABLE registration (customer_id number, product_id number);
|
|
| 14 |
CREATE TABLE district (id number, name text, prefix text, province_id number);
|
| 15 |
CREATE TABLE province (id number, name text, code text)
|
| 16 |
CREATE TABLE product (id number, category text, name text, description text, price number, duration number, data_amount number, voice_amount number, sms_amount number);", Liệt kê số khách hàng của từng tỉnh
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
CREATE TABLE district (id number, name text, prefix text, province_id number);
|
| 15 |
CREATE TABLE province (id number, name text, code text)
|
| 16 |
CREATE TABLE product (id number, category text, name text, description text, price number, duration number, data_amount number, voice_amount number, sms_amount number);", Liệt kê số khách hàng của từng tỉnh
|
| 17 |
+
"CREATE TABLE customer (id number, name text, gender text, age number, district_id number;
|
| 18 |
+
CREATE TABLE registration (customer_id number, product_id number);
|
| 19 |
+
CREATE TABLE district (id number, name text, prefix text, province_id number);
|
| 20 |
+
CREATE TABLE province (id number, name text, code text)
|
| 21 |
+
CREATE TABLE product (id number, category text, name text, description text, price number, duration number, data_amount number, voice_amount number, sms_amount number);
|
| 22 |
+
|
| 23 |
+
product.voice_amount is the call capacity, product.data_amount is the internet data capacity, product.sms_amount is the maximum number of sms messages can be sent", Tìm sản phẩm có dung lượng cuộc gọi lớn nhất
|