Skip to content

Commit

Permalink
Update show tables output (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
ewgenius authored Sep 30, 2024
1 parent 2c8dd58 commit d46f713
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions constraints/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,13 @@ 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 | users | BASE TABLE |
| spice | runtime | query_history | BASE TABLE |
+---------------+--------------+---------------+------------+
+---------------+--------------+--------------+------------+
| table_catalog | table_schema | table_name | table_type |
+---------------+--------------+--------------+------------+
| spice | public | users | BASE TABLE |
| spice | runtime | task_history | BASE TABLE |
| spice | runtime | metrics | BASE TABLE |
+---------------+--------------+--------------+------------+

Time: 0.031901631 seconds. 2 rows.
sql> select email, username, items_bought, last_login from users;
Expand Down

0 comments on commit d46f713

Please sign in to comment.