From 78a8b91472284e28fdd41185df30e7f2002ebabb Mon Sep 17 00:00:00 2001 From: ken-zlai Date: Tue, 12 Nov 2024 10:01:34 -0800 Subject: [PATCH] add ; for proper sql syntax --- README.md | 2 +- docs/source/getting_started/Tutorial.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f72ec6ef6..847a88308 100644 --- a/README.md +++ b/README.md @@ -239,7 +239,7 @@ And then: spark-sql> SELECT user_id, quickstart_returns_v1_refund_amt_sum_30d, quickstart_purchases_v1_purchase_price_sum_14d, quickstart_users_v1_email_verified from default.quickstart_training_set_v1 limit 100; ``` -Note that this only selects a few columns. You can also run a `select * from default.quickstart_training_set_v1 limit 100` to see all columns, however, note that the table is quite wide and the results might not be very readable on your screen. +Note that this only selects a few columns. You can also run a `select * from default.quickstart_training_set_v1 limit 100;` to see all columns, however, note that the table is quite wide and the results might not be very readable on your screen. To exit the sql shell you can run: diff --git a/docs/source/getting_started/Tutorial.md b/docs/source/getting_started/Tutorial.md index b5569ab96..7bc198bcb 100644 --- a/docs/source/getting_started/Tutorial.md +++ b/docs/source/getting_started/Tutorial.md @@ -197,7 +197,7 @@ And then: spark-sql> SELECT user_id, quickstart_returns_v1_refund_amt_sum_30d, quickstart_purchases_v1_purchase_price_sum_14d, quickstart_users_v1_email_verified from default.quickstart_training_set_v1 limit 100; ``` -Note that this only selects a few columns. You can also run a `select * from default.quickstart_training_set_v1 limit 100` to see all columns, however, note that the table is quite wide and the results might not be very readable on your screen. +Note that this only selects a few columns. You can also run a `select * from default.quickstart_training_set_v1 limit 100;` to see all columns, however, note that the table is quite wide and the results might not be very readable on your screen. To exit the sql shell you can run: