Spaces:
Sleeping
Sleeping
Commit
·
5253863
1
Parent(s):
08a4f6c
feat: add main menu options and scripts
Browse files- resources/examples.csv +17 -2
resources/examples.csv
CHANGED
|
@@ -13,7 +13,7 @@ CREATE TABLE product (id number, category text, name text, description text, pri
|
|
| 13 |
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);",
|
| 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);
|
|
@@ -22,4 +22,19 @@ CREATE TABLE product (id number, category text, name text, description text, pri
|
|
| 22 |
|
| 23 |
product.voice_amount is the call capacity.
|
| 24 |
product.data_amount is the internet data capacity.
|
| 25 |
-
product.sms_amount is the maximum number of sms messages can be sent.",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
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
|
| 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);
|
|
|
|
| 22 |
|
| 23 |
product.voice_amount is the call capacity.
|
| 24 |
product.data_amount is the internet data capacity.
|
| 25 |
+
product.sms_amount is the maximum number of sms messages can be sent.",Dung lượng cuộc gọi lớn nhất là bao nhiêu, của sản phẩm nào
|
| 26 |
+
"CREATE TABLE customer (id number, name text, gender text, age number, district_id number;
|
| 27 |
+
CREATE TABLE registration (customer_id number, product_id number);
|
| 28 |
+
CREATE TABLE district (id number, name text, prefix text, province_id number);
|
| 29 |
+
CREATE TABLE province (id number, name text, code text)
|
| 30 |
+
CREATE TABLE product (id number, category text, name text, description text, price number, duration number, data_amount number, voice_amount number, sms_amount number);",Sản phẩm ST70 có bao nhiêu lượt đăng kí và sử dụng?
|
| 31 |
+
"CREATE TABLE customer (id number, name text, gender text, age number, district_id number;
|
| 32 |
+
CREATE TABLE registration (customer_id number, product_id number);
|
| 33 |
+
CREATE TABLE district (id number, name text, prefix text, province_id number);
|
| 34 |
+
CREATE TABLE province (id number, name text, code text)
|
| 35 |
+
CREATE TABLE product (id number, category text, name text, description text, price number, duration number, data_amount number, voice_amount number, sms_amount number);",Có bao nhiêu gói cước (sản phẩm) data (category='data')?
|
| 36 |
+
"CREATE TABLE customer (id number, name text, gender text, age number, district_id number;
|
| 37 |
+
CREATE TABLE registration (customer_id number, product_id number);
|
| 38 |
+
CREATE TABLE district (id number, name text, prefix text, province_id number);
|
| 39 |
+
CREATE TABLE province (id number, name text, code text)
|
| 40 |
+
CREATE TABLE product (id number, category text, name text, description text, price number, duration number, data_amount number, voice_amount number, sms_amount number);",Gói cước (sản phẩm nào) có dung lượng internet data lớn nhất?
|