From 45d5501aa7f5dfbccf31d461389f30ffaa39fc88 Mon Sep 17 00:00:00 2001 From: Robert A Date: Wed, 15 Apr 2026 14:48:41 -0700 Subject: [PATCH] fix(documentation): FAQ grammar for SQL query wording (#38923) --- docs/docs/faq.mdx | 2 +- docs/versioned_docs/version-6.0.0/faq.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/faq.mdx b/docs/docs/faq.mdx index e98cd70edc1..2e6ff2fefa8 100644 --- a/docs/docs/faq.mdx +++ b/docs/docs/faq.mdx @@ -91,7 +91,7 @@ or a view. When working with tables, the solution would be to create a table that contains all the fields needed for your analysis, most likely through some scheduled batch process. -A view is a simple logical layer that abstracts an arbitrary SQL queries as a virtual table. This can +A view is a simple logical layer that abstracts an arbitrary SQL query as a virtual table. This can allow you to join and union multiple tables and to apply some transformation using arbitrary SQL expressions. The limitation there is your database performance, as Superset effectively will run a query on top of your query (view). A good practice may be to limit yourself to joining your main diff --git a/docs/versioned_docs/version-6.0.0/faq.mdx b/docs/versioned_docs/version-6.0.0/faq.mdx index 10c6b267d1e..3a3b57f82b8 100644 --- a/docs/versioned_docs/version-6.0.0/faq.mdx +++ b/docs/versioned_docs/version-6.0.0/faq.mdx @@ -35,7 +35,7 @@ or a view. When working with tables, the solution would be to create a table that contains all the fields needed for your analysis, most likely through some scheduled batch process. -A view is a simple logical layer that abstracts an arbitrary SQL queries as a virtual table. This can +A view is a simple logical layer that abstracts an arbitrary SQL query as a virtual table. This can allow you to join and union multiple tables and to apply some transformation using arbitrary SQL expressions. The limitation there is your database performance, as Superset effectively will run a query on top of your query (view). A good practice may be to limit yourself to joining your main