Skip to content

Commit

Permalink
Update sales-bi (#110)
Browse files Browse the repository at this point in the history
* Update sales-bi

* Update README.md
  • Loading branch information
sgrebnov authored Sep 16, 2024
1 parent 3470cee commit 2bf058f
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions sales-bi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,13 +99,16 @@ Welcome to the interactive Spice.ai SQL Query Utility! Type 'help' for help.
show tables; -- list available tables
sql> show tables
+---------------+--------------------+--------------------+------------+
| table_catalog | table_schema | table_name | table_type |
+---------------+--------------------+--------------------+------------+
| spice | public | cleaned_sales_data | BASE TABLE |
+---------------+--------------------+--------------------+------------+
+---------------+--------------+--------------------------------+------------+
| table_catalog | table_schema | table_name | table_type |
+---------------+--------------+--------------------------------+------------+
| spice | runtime | task_history | BASE TABLE |
| spice | public | cleaned_sales_data | BASE TABLE |
| spice | public | cleaned_sales_data_accelerated | BASE TABLE |
+---------------+--------------+--------------------------------+------------+
Time: 0.01025875 seconds. 3 rows.
Query took: 0.008933628 seconds
sql> select * from cleaned_sales_data limit 1;
sql> select order_date, sales from cleaned_sales_data limit 3;
+---------------------+---------+
Expand All @@ -116,7 +119,7 @@ sql> select order_date, sales from cleaned_sales_data limit 3;
| 2003-07-01T00:00:00 | 3884.34 |
+---------------------+---------+
Query took: 0.012897393 seconds
Time: 0.610236 seconds. 3 rows.
```

## Clean up
Expand Down

0 comments on commit 2bf058f

Please sign in to comment.