diff --git a/_includes/cloud-users/cloud-summary-table-privs.md b/_includes/cloud-users/cloud-summary-table-privs.md
index 0075d2061..26ba2edad 100644
--- a/_includes/cloud-users/cloud-summary-table-privs.md
+++ b/_includes/cloud-users/cloud-summary-table-privs.md
@@ -4,7 +4,7 @@
|---|---|
| [Create tables](/docs/cloud/cloud-tables/cloud-table-create) | User, Administrator |
| [Read & query tables](/docs/cloud/cloud-query/cloud-query-data) | User, Administrator |
-| [Upload Data](/docs/cloud/cloud-tables/cloud-table-upload-data) | User, Administrator|
+| [Upload Data](/docs/cloud/cloud-ingest/cloud-table-upload-data) | User, Administrator|
| [Add table column](/docs/cloud/cloud-tables/cloud-table-add-column) | User, Administrator|
| [Delete table column](/docs/cloud/cloud-tables/cloud-table-delete-column) | User, Administrator|
| [Delete tables](/docs/cloud/cloud-tables/cloud-table-delete) | User, Administrator |
diff --git a/docs/cloud/cloud-configuration/configuration-billing.md b/docs/cloud/cloud-configuration/configuration-billing.md
index 0ea202214..806fd7a84 100644
--- a/docs/cloud/cloud-configuration/configuration-billing.md
+++ b/docs/cloud/cloud-configuration/configuration-billing.md
@@ -29,6 +29,7 @@ Account usage is provided on the **Configuration** page and includes:
You can upgrade to a Paid account using a US account number or credit card via the Stripe billing system.
* Click **Configuration** > **Upgrade to Paid**.
+* Complete the forms as directed.
## Further information
diff --git a/docs/cloud/cloud-ingest/cloud-ingest-manage.md b/docs/cloud/cloud-ingest/cloud-ingest-manage.md
index d99b55b60..1bcce4408 100644
--- a/docs/cloud/cloud-ingest/cloud-ingest-manage.md
+++ b/docs/cloud/cloud-ingest/cloud-ingest-manage.md
@@ -3,31 +3,15 @@ title: Manage cloud ingestion
layout: default
parent: Cloud
has_children: false
-nav_order: 7
+nav_order: 8
has_toc: false
---
# How do I import data to my FeatureBase Cloud database?
{: .no_toc }
-{% include page-toc.md %}
+There are several ways to import data to an existing table in your database:
-## Before you begin
-
-{% include /cloud-db/cloud-db-dependencies.md %}
-
-## Load data into your database
-
-All data ingestion is performed using SQL. The product puts an emphasis on push-based, streaming models in which you, the client, create a process to push data to your databases with SQL statements. This model allows you to control how data is pushed and what(if any) processes run to transform or clean the data before ingestion. This model also keeps data in your datacenter should upstream issues arise. Lastly, push-based ingest helps protect your datacenter by keeping it closed to outside connections that reach in and pull data. Today, the tool only supports SQL through HTTPS. Any process or application that can make calls over HTTPS is able to push data to FeatureBase.
-
-Once data is pushed, it is translated into FeatureBases’s format and writes the data into your table. This process typically reduces your data’s footprint by 10x but can see reductions upwards of 100x.
-
-## Data Model
-
-Data modeling determines how data is imported to FeatureBase and how it is represented to meet your needs.
-
-* [Learn about data modeling](/docs/concepts/overview-data-modeling)
-
-## Next step
-
-* [Learn how to ingest data](/docs/sql-guide/statements/statement-insert-bulk)
\ No newline at end of file
+* [Upload data from a CSV file in the UI](/docs/cloud/cloud-ingest/cloud-table-upload-data)
+* [SQL INSERT statement](/docs/sql-guide/statements/statement-insert)
+* [SQL BULK INSERT statement](/docs/sql-guide/statements/statement-insert-bulk)
diff --git a/docs/cloud/cloud-tables/cloud-table-upload-data.md b/docs/cloud/cloud-ingest/cloud-table-upload-data.md
similarity index 59%
rename from docs/cloud/cloud-tables/cloud-table-upload-data.md
rename to docs/cloud/cloud-ingest/cloud-table-upload-data.md
index 3616c57a7..6d235034f 100644
--- a/docs/cloud/cloud-tables/cloud-table-upload-data.md
+++ b/docs/cloud/cloud-ingest/cloud-table-upload-data.md
@@ -1,7 +1,7 @@
---
title: Upload data
layout: default
-parent: Manage tables
+parent: Upload data
grand_parent: Cloud
nav_order: 2
---
@@ -9,57 +9,57 @@ nav_order: 2
# How do I upload data to FeatureBase Cloud?
{: .no_toc }
-You can upload data to FeatureBase cloud using a specifically structured CSV file.
+Upload data from a CSV file to a new destination table.
{: .note}
-You can also upload data using the [BULK INSERT statement](/docs/sql-guide/statements/statement-insert-bulk)
+You can also upload CSV data using the [BULK INSERT statement](/docs/sql-guide/statements/statement-insert-bulk)
## Before you begin
{% include /cloud/cloud-before-begin.md %}
* [Create a database](/docs/cloud/cloud-databases/cloud-db-create-custom)
+* Click **Databases** > database name > **Upload Data**.
## Naming standards
{% include /concepts/standard-naming-obj.md%}
{% include /cloud-table/cloud-standard-naming-table.md %}
-## Upload file
+## CSV file structure
Your CSV data file needs the following structure:
-* Header row
-* First item in the header row and each row is a unique identifier
-* Each row of data is comma-separated
+* Optional header row
+* First column is a unique identifier
+* Each item of data is separated by commas
+* New line is a new row
## Uploading data to a table
{: .important}
Table column names cannot be changed once the table is defined.
-### Step 1: Navigate to Upload Data
-
-* Click **Databases** > database name > **Upload Data**.
-
-### Step 2: Select a file to upload
+### Step 1: Select a file to upload
-1. Click **Upload a file**.
-2. Select a file from the file browser.
-3. Click **Done**.
+* Click **Upload a file**.
+* Select the CSV file from the browser.
+* Click **The first row contains column labels** if your CSV contains a header row.
+* Click **Done**.
-### Step 3: Select column type for each column
+### Step 2: Select column data types
{% include /cloud-table/cloud-summary-table-pk.md %}
-1. Click more_vert on the column.
-2. Click **Update**.
-3. Select a type from the **Type** dropdown menu.
-4. Click **Update Column**.
+* Click more_vert on the column.
+* Click **Update**.
+* Select a type from the **Type** dropdown menu.
+* Set a constraint if required.
+* Click **Update Column**.
{: .note }
-User cannot procced until all column types have been selected.
+User cannot procced until all column data types have been selected.
-### Step 4: Name the table and write data
+### Step 3: Name your table and write data
{: .note}
>You can download SQL statements automatically generated by FeatureBase if required:
diff --git a/docs/cloud/cloud-tables/cloud-table-add-column.md b/docs/cloud/cloud-tables/cloud-table-add-column.md
index a09297584..d42492b37 100644
--- a/docs/cloud/cloud-tables/cloud-table-add-column.md
+++ b/docs/cloud/cloud-tables/cloud-table-add-column.md
@@ -16,6 +16,7 @@ nav_order: 3
{% include /cloud/cloud-before-begin.md %}
* [Create a database](/docs/cloud/cloud-databases/cloud-db-create-custom)
* [Create a table](/docs/cloud/cloud-tables/cloud-table-create)
+* * Click **Databases** > database name > **Tables** to view tables.
## Column data types and constraints
@@ -26,20 +27,16 @@ nav_order: 3
{% include /concepts/standard-naming-obj.md%}
{% include /cloud-table/cloud-standard-naming-col.md %}
-## Step 1: View all tables
-
-{% include /cloud-table/cloud-table-view-list.md %}
-
-## Step 2: Add a column to a table
+## Add a column to a table
{: .note }
Table columns cannot be edited once created.
-1. Click the table name.
-2. Click **Columns** > **Add column**.
-3. Enter a name for the column
-4. Choose the data type and enter values for the constraints if available.
-5. Click **Add column**
+* Click the table name.
+* Click **Columns** > **Add column**.
+* Enter a name for the column
+* Choose the data type and enter values for the constraints if available.
+* Click **Add column**
## Further information
diff --git a/docs/cloud/cloud-tables/cloud-table-create.md b/docs/cloud/cloud-tables/cloud-table-create.md
index 263a9e59b..5b6023e5d 100644
--- a/docs/cloud/cloud-tables/cloud-table-create.md
+++ b/docs/cloud/cloud-tables/cloud-table-create.md
@@ -21,28 +21,25 @@ You can also create a table using a [SQL CREATE TABLE statement](/docs/sql-guide
{% include /cloud/cloud-before-begin.md %}
* [Learn how to create a database](/docs/cloud/cloud-databases/cloud-db-create-custom)
* [Learn how to manage tables](/docs/cloud/cloud-tables/cloud-table-manage)
+* Click **Databases** > database name > **Tables** to view tables.
## Naming standards
{% include /concepts/standard-naming-obj.md%}
{% include /cloud-table/cloud-standard-naming-table.md %}
-## Step 1: view tables
+## Step 1: create table
-{% include /cloud-table/cloud-table-view-list.md %}
+* Click **Create table**.
+* Select the destination database.
+* Enter a table name and an optional description.
-## Step 2: create table
-
-1. Click **Create table**.
-2. Select the destination database.
-3. Enter a table name and an optional description.
-
-## Step 3: choose the primary key
+## Step 2: choose the primary key
{% include /cloud-table/cloud-summary-table-pk.md %}
-1. Select the ID type.
-2. Click **Create**.
+* Select the ID type.
+* Click **Create**.
## Next step
diff --git a/docs/cloud/cloud-tables/cloud-table-delete-column.md b/docs/cloud/cloud-tables/cloud-table-delete-column.md
index a7935049a..a9a56a5b8 100644
--- a/docs/cloud/cloud-tables/cloud-table-delete-column.md
+++ b/docs/cloud/cloud-tables/cloud-table-delete-column.md
@@ -25,18 +25,15 @@ You may need to delete a column if:
* [Learn how to create a database](/docs/cloud/cloud-databases/cloud-db-manage)
* [Create a table](/docs/cloud/cloud-tables/cloud-table-create)
* [Create a table column](/docs/cloud/cloud-tables/cloud-table-add-column)
+* Click **Databases** > database name > **Tables** to view tables.
-## Step 1: View all tables
+## Drop the selected column
-{% include /cloud-table/cloud-table-view-list.md %}
-
-## Step 2: Drop the selected column
-
-1. Click the table name.
-2. Click **Columns**.
-3. Click more_vert on the column > **Delete**.
-5. Enter "DELETE" in the confirmation dialog.
-6. Click **Delete**.
+* Click the table name.
+* Click **Columns**.
+* Click more_vert on the column > **Delete**.
+* Enter "DELETE" in the confirmation dialog.
+* Click **Delete**.
## Further information
diff --git a/docs/cloud/cloud-tables/cloud-table-delete.md b/docs/cloud/cloud-tables/cloud-table-delete.md
index 5a89a63b9..d36447ec0 100644
--- a/docs/cloud/cloud-tables/cloud-table-delete.md
+++ b/docs/cloud/cloud-tables/cloud-table-delete.md
@@ -1,12 +1,12 @@
---
-title: Drop table
+title: Delete table
layout: default
parent: Manage tables
grand_parent: Cloud
nav_order: 6
---
-# How do I drop a table in FeatureBase Cloud?
+# How do I delete a table in FeatureBase Cloud?
{: .no_toc }
There are a number of reasons why you may choose to drop a table, including:
@@ -27,18 +27,14 @@ There are a number of reasons why you may choose to drop a table, including:
{% include /cloud/cloud-before-begin.md %}
* [Create a database](/docs/cloud/cloud-databases/cloud-db-create-custom)
* [Create a table](/docs/cloud/cloud-tables/cloud-table-create)
+* Click **Databases** > database name > **Tables** to view tables.
-## Step 1: View table list
+## Delete the selected table
-{% include /cloud-table/cloud-table-view-list.md %}
-
-## Step 2: Drop the selected table
-
-1. Click more_vert > **Drop table**
-2. Enter "DELETE" in the confirmation dialog.
-3. Click **Drop table**.
+* Click more_vert > **Drop table**
+* Enter "DELETE" in the confirmation dialog.
+* Click **Drop table**.
## Further information
* [Delete table API reference](https://api-docs-featurebase-cloud.redoc.ly/latest#operation/deletetable)
-* [Learn how to create tables](/docs/cloud/cloud-tables/cloud-table-create)
diff --git a/docs/cloud/cloud-tables/cloud-table-manage.md b/docs/cloud/cloud-tables/cloud-table-manage.md
index c52f33a8a..29b9298b8 100644
--- a/docs/cloud/cloud-tables/cloud-table-manage.md
+++ b/docs/cloud/cloud-tables/cloud-table-manage.md
@@ -3,7 +3,7 @@ title: Manage tables
layout: default
parent: Cloud
has_children: true
-nav_order: 8
+nav_order: 7
has_toc: false
---
@@ -44,10 +44,13 @@ Perform data modeling **before** creating tables to avoid issues.
{% include /cloud-table/cloud-standard-naming-table.md %}
{% include /cloud-table/cloud-standard-naming-col.md%}
+## View tables
+
+* Click **Databases** > database name > **Tables**.
+
## Managing tables in FeatureBase Cloud
* [Create table](/docs/cloud/cloud-tables/cloud-table-create)
-* [Upload data](/docs/cloud/cloud-tables/cloud-table-upload-data)
* [Add table columns](/docs/cloud/cloud-tables/cloud-table-add-column)
* [Delete table columns](/docs/cloud/cloud-tables/cloud-table-delete-column)
* [Delete table](/docs/cloud/cloud-tables/cloud-table-delete)
@@ -56,6 +59,12 @@ Perform data modeling **before** creating tables to avoid issues.
* [Table API reference](https://api-docs-featurebase-cloud.redoc.ly/latest#tag/Tables)
+## Managing tables using SQL
+
+* [Create table](/docs/sql-guide/statements/statement-table-create)
+* [Alter table](/docs/sql-guide/statements/statement-table-alter)
+* [Drop table](/docs/sql-guide/statements/statement-table-create)
+
## Joining tables
Tables that exist in the same database can be joined.
diff --git a/docs/cloud/cloud-tables/cloud-table-query-endpoint.md b/docs/cloud/cloud-tables/cloud-table-query-endpoint.md
index a5c1cfb88..2e2e3eac4 100644
--- a/docs/cloud/cloud-tables/cloud-table-query-endpoint.md
+++ b/docs/cloud/cloud-tables/cloud-table-query-endpoint.md
@@ -19,11 +19,7 @@ The query endpoint is used to query a FeatureBase Cloud database.
* [Create a database](/docs/cloud/cloud-databases/cloud-db-create-custom)
* [Create a table](/docs/cloud/cloud-tables/cloud-table-create)
-## Step 1: view tables
+## Copy the table query endpoint
-{% include /cloud-table/cloud-table-view-list.md %}
-
-## Step 2: view the query endpoint
-
-1. Click more_vert for the table to query.
-2. Choose **Copy query endpoint**
\ No newline at end of file
+* Click more_vert for the table to query.
+* Choose **Copy query endpoint**
diff --git a/docs/sql-guide/data-types/data-types-home.md b/docs/sql-guide/data-types/data-types-home.md
index e943339dd..a49e8bdee 100644
--- a/docs/sql-guide/data-types/data-types-home.md
+++ b/docs/sql-guide/data-types/data-types-home.md
@@ -3,7 +3,7 @@ title: Data types & constraints
layout: default
parent: SQL guide
has_children: true
-nav_order: 2
+nav_order: 3
has_toc: false
---
diff --git a/docs/sql-guide/examples/sql-eg-home.md b/docs/sql-guide/examples/sql-eg-home.md
index 0d8994a05..6d011674b 100644
--- a/docs/sql-guide/examples/sql-eg-home.md
+++ b/docs/sql-guide/examples/sql-eg-home.md
@@ -2,7 +2,7 @@
title: SQL examples
layout: default
parent: SQL guide
-nav_order: 7
+nav_order: 10
has_toc: false
---
@@ -20,7 +20,7 @@ Supported SQL statements, data-types, expressions, functions and operators are d
{% include /sql-guide/sql-eg-table-create-statements.md %}
+{% include /sql-guide/sql-eg-table-alter-statements.md %} -->
{% include /sql-guide/sql-eg-insert-statements.md %}
diff --git a/docs/sql-guide/expressions/expressions-home.md b/docs/sql-guide/expressions/expressions-home.md
index aaf5ff0c7..3964b47d3 100644
--- a/docs/sql-guide/expressions/expressions-home.md
+++ b/docs/sql-guide/expressions/expressions-home.md
@@ -2,7 +2,7 @@
title: Expressions
layout: default
parent: SQL guide
-nav_order: 4
+nav_order: 5
---
# SQL Expressions
diff --git a/docs/sql-guide/functions/function-identifier.md b/docs/sql-guide/functions/function-identifier.md
index f16b09339..798a3a6cc 100644
--- a/docs/sql-guide/functions/function-identifier.md
+++ b/docs/sql-guide/functions/function-identifier.md
@@ -7,6 +7,9 @@ grand_parent: SQL guide
# IDENTIFIER() function
+{: .note}
+`IDENTIFIER()` is supported on [FeatureBase Cloud](/docs/cloud/cloud-home)
+
`IDENTIFIER()` is used with the `INSERT INTO` statement and automatically generates unique numeric row values for the `_id` column.
## Before you begin
diff --git a/docs/sql-guide/functions/functions-home.md b/docs/sql-guide/functions/functions-home.md
index fd916570f..50aa75ff0 100644
--- a/docs/sql-guide/functions/functions-home.md
+++ b/docs/sql-guide/functions/functions-home.md
@@ -3,7 +3,7 @@ title: Functions
layout: default
parent: SQL guide
has_children: true
-nav_order: 3
+nav_order: 4
has_toc: false
---
diff --git a/docs/sql-guide/hints/hint-flatten.md b/docs/sql-guide/hints/hint-flatten.md
index e2aaaada3..c47f5fcac 100644
--- a/docs/sql-guide/hints/hint-flatten.md
+++ b/docs/sql-guide/hints/hint-flatten.md
@@ -1,7 +1,7 @@
---
title: FLATTEN()
layout: default
-parent: SELECT hints
+parent: SQL hints
grand_parent: SQL guide
---
diff --git a/docs/sql-guide/hints/hints-home.md b/docs/sql-guide/hints/hints-home.md
index 23fa16bd7..7fd6d0108 100644
--- a/docs/sql-guide/hints/hints-home.md
+++ b/docs/sql-guide/hints/hints-home.md
@@ -1,11 +1,11 @@
---
-title: SELECT hints
+title: SQL hints
layout: default
parent: SQL guide
has_children: true
-nav_order: 10
+nav_order: 2
---
-# SELECT Hints
+# SQL Hints
SELECT hints tell queries how to access data in a specified table.
diff --git a/docs/sql-guide/operators/operators-home.md b/docs/sql-guide/operators/operators-home.md
index d2d49c411..d7aba56ce 100644
--- a/docs/sql-guide/operators/operators-home.md
+++ b/docs/sql-guide/operators/operators-home.md
@@ -2,7 +2,7 @@
title: Operators
layout: default
parent: SQL guide
-nav_order: 5
+nav_order: 6
---
# SQL Operators
diff --git a/docs/sql-guide/statements/statement-columns-show.md b/docs/sql-guide/statements/statement-columns-show.md
index 18a0eeb1b..4364fafa2 100644
--- a/docs/sql-guide/statements/statement-columns-show.md
+++ b/docs/sql-guide/statements/statement-columns-show.md
@@ -3,7 +3,7 @@ title: SHOW COLUMNS
layout: default
parent: Statements
grand_parent: SQL guide
-nav_order: 10
+nav_order: 9
---
# SHOW COLUMNS statement
diff --git a/docs/sql-guide/statements/statement-db-alter.md b/docs/sql-guide/statements/statement-db-alter.md
index eb90e5870..8c79ceaa1 100644
--- a/docs/sql-guide/statements/statement-db-alter.md
+++ b/docs/sql-guide/statements/statement-db-alter.md
@@ -3,7 +3,7 @@ title: ALTER DATABASE
layout: default
parent: Statements
grand_parent: SQL guide
-nav_order: 8
+nav_order: 3
---
# ALTER DATABASE statement
diff --git a/docs/sql-guide/statements/statement-db-create.md b/docs/sql-guide/statements/statement-db-create.md
index af44a9e99..254473ab0 100644
--- a/docs/sql-guide/statements/statement-db-create.md
+++ b/docs/sql-guide/statements/statement-db-create.md
@@ -3,7 +3,7 @@ title: CREATE SERVERLESS DATABASE
layout: default
parent: Statements
grand_parent: SQL guide
-nav_order: 8
+nav_order: 1
nav_exclude: true
---
diff --git a/docs/sql-guide/statements/statement-db-drop.md b/docs/sql-guide/statements/statement-db-drop.md
index 7f0100c4e..78ac63ec3 100644
--- a/docs/sql-guide/statements/statement-db-drop.md
+++ b/docs/sql-guide/statements/statement-db-drop.md
@@ -3,7 +3,7 @@ title: DROP DATABASE
layout: default
parent: Statements
grand_parent: SQL guide
-nav_order: 9
+nav_order: 4
---
# DROP DATABASE statement
diff --git a/docs/sql-guide/statements/statement-db-show.md b/docs/sql-guide/statements/statement-db-show.md
index f75257a23..2662264e4 100644
--- a/docs/sql-guide/statements/statement-db-show.md
+++ b/docs/sql-guide/statements/statement-db-show.md
@@ -3,7 +3,7 @@ title: SHOW DATABASES
layout: default
parent: Statements
grand_parent: SQL guide
-nav_order: 7
+nav_order: 2
---
# SHOW DATABASES statement
diff --git a/docs/sql-guide/statements/statement-insert-bulk.md b/docs/sql-guide/statements/statement-insert-bulk.md
index 35685ad46..13ef59f4a 100644
--- a/docs/sql-guide/statements/statement-insert-bulk.md
+++ b/docs/sql-guide/statements/statement-insert-bulk.md
@@ -3,7 +3,7 @@ title: BULK INSERT
layout: default
parent: Statements
grand_parent: SQL guide
-nav_order: 4
+nav_order: 13
---
# BULK INSERT statement
diff --git a/docs/sql-guide/statements/statement-insert.md b/docs/sql-guide/statements/statement-insert.md
index d2c5d1964..8e8544a49 100644
--- a/docs/sql-guide/statements/statement-insert.md
+++ b/docs/sql-guide/statements/statement-insert.md
@@ -3,7 +3,7 @@ title: INSERT
layout: default
parent: Statements
grand_parent: SQL guide
-nav_order: 3
+nav_order: 12
---
# INSERT statement
diff --git a/docs/sql-guide/statements/statement-kill-query.md b/docs/sql-guide/statements/statement-kill-query.md
index 13a58d211..79b2469c0 100644
--- a/docs/sql-guide/statements/statement-kill-query.md
+++ b/docs/sql-guide/statements/statement-kill-query.md
@@ -3,7 +3,7 @@ title: KILL QUERY
layout: default
parent: Statements
grand_parent: SQL guide
-nav_order: 20
+nav_order: 30
---
## KILL QUERY statement
diff --git a/docs/sql-guide/statements/statement-select.md b/docs/sql-guide/statements/statement-select.md
index 41e42865c..ae94cf0c3 100644
--- a/docs/sql-guide/statements/statement-select.md
+++ b/docs/sql-guide/statements/statement-select.md
@@ -3,7 +3,7 @@ title: SELECT
layout: default
parent: Statements
grand_parent: SQL guide
-nav_order: 7
+nav_order: 20
---
# SELECT statement
diff --git a/docs/sql-guide/statements/statement-table-alter.md b/docs/sql-guide/statements/statement-table-alter.md
index 7571fb1ef..b4c287ca5 100644
--- a/docs/sql-guide/statements/statement-table-alter.md
+++ b/docs/sql-guide/statements/statement-table-alter.md
@@ -3,7 +3,7 @@ title: ALTER TABLE
layout: default
parent: Statements
grand_parent: SQL guide
-nav_order: 2
+nav_order: 8
---
# ALTER TABLE statement
diff --git a/docs/sql-guide/statements/statement-table-create-show.md b/docs/sql-guide/statements/statement-table-create-show.md
index 4ce468215..48e1aead3 100644
--- a/docs/sql-guide/statements/statement-table-create-show.md
+++ b/docs/sql-guide/statements/statement-table-create-show.md
@@ -3,7 +3,7 @@ title: SHOW CREATE TABLE
layout: default
parent: Statements
grand_parent: SQL guide
-nav_order: 8
+nav_order: 6
---
# SHOW CREATE TABLE statement
diff --git a/docs/sql-guide/statements/statement-table-create.md b/docs/sql-guide/statements/statement-table-create.md
index 463be4832..c9940f39e 100644
--- a/docs/sql-guide/statements/statement-table-create.md
+++ b/docs/sql-guide/statements/statement-table-create.md
@@ -3,12 +3,12 @@ title: CREATE TABLE
layout: default
parent: Statements
grand_parent: SQL guide
-nav_order: 1
+nav_order: 5
---
## CREATE TABLE statement
-Creates a FeatureBase table. The table already exists and `IF NOT EXISTS` is not specified the statement will not be successful.
+Create a FeatureBase table with the specified columns and data types.
## BNF diagrams
diff --git a/docs/sql-guide/statements/statement-tables-show.md b/docs/sql-guide/statements/statement-tables-show.md
index d7e2b1cae..7852826ca 100644
--- a/docs/sql-guide/statements/statement-tables-show.md
+++ b/docs/sql-guide/statements/statement-tables-show.md
@@ -3,7 +3,7 @@ title: SHOW TABLES
layout: default
parent: Statements
grand_parent: SQL guide
-nav_order: 9
+nav_order: 7
---
# SHOW TABLES statement
diff --git a/docs/sql-guide/statements/statement-view-create.md b/docs/sql-guide/statements/statement-view-create.md
index 4f223a709..bc79ec76e 100644
--- a/docs/sql-guide/statements/statement-view-create.md
+++ b/docs/sql-guide/statements/statement-view-create.md
@@ -3,7 +3,7 @@ title: CREATE VIEW
layout: default
parent: Statements
grand_parent: SQL guide
-nav_order: 2
+nav_order: 11
---
## CREATE VIEW statement
@@ -56,9 +56,9 @@ values (3, '1970-01-01T00:00:00Z');
insert into person(_id, dob)
values (4, '2080-01-01T00:00:00Z');
-create view retiree as
-select _id, datetimeadd('yy',62,dob) retirement_dt
-from person
+create view retiree as
+select _id, datetimeadd('yy',62,dob) retirement_dt
+from person
where datetimeadd('yy',62,dob)>current_timestamp;
select * from retiree order by retirement_dt;
@@ -84,8 +84,8 @@ values (3, '1970-01-01T00:00:00Z', '123456700', 'John Doe 3');
insert into person(_id, dob, ssn, name)
values (4, '2080-01-01T00:00:00Z', '123456000', 'John Doe 4');
-create view customer as
-select _id, name, datetimepart('yy',dob) birth_year
+create view customer as
+select _id, name, datetimepart('yy',dob) birth_year
from person;
select * from customer order by birth_year;