From 4d7f76c20d1ab241589f2bf6c48c9a4609c3211e Mon Sep 17 00:00:00 2001 From: kurtiswen Date: Wed, 26 May 2021 11:45:46 +0800 Subject: [PATCH 1/2] Update frequently-asked-questions-page.mdx refine answer for first question, added SQL Lab query description. --- docs/src/pages/docs/frequently-asked-questions-page.mdx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/src/pages/docs/frequently-asked-questions-page.mdx b/docs/src/pages/docs/frequently-asked-questions-page.mdx index 5b4ab72fb3a16..c0ee3e7d8925f 100644 --- a/docs/src/pages/docs/frequently-asked-questions-page.mdx +++ b/docs/src/pages/docs/frequently-asked-questions-page.mdx @@ -24,6 +24,9 @@ will do its own _GROUP BY_ and doing the work twice might slow down performance. Whether you use a table or a view, the important factor is whether your database is fast enough to serve it in an interactive fashion to provide a good user experience in Superset. +However, if you are using the SQL Lab, there is no such limitation, you can write sql query to join +multiple tables as long as your db account has access to the tables. + ### How BIG can my datasource be? It can be gigantic! Superset acts as a thin layer above your underlying databases or data engines. From f609cb85c5973213523ac203d9ffcabd61b3b5e8 Mon Sep 17 00:00:00 2001 From: Ville Brofeldt Date: Fri, 19 Nov 2021 18:54:01 +0200 Subject: [PATCH 2/2] fix EOL lint --- docs/src/pages/docs/frequently-asked-questions-page.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/pages/docs/frequently-asked-questions-page.mdx b/docs/src/pages/docs/frequently-asked-questions-page.mdx index e9534531e14d3..8e3d0b49d56dc 100644 --- a/docs/src/pages/docs/frequently-asked-questions-page.mdx +++ b/docs/src/pages/docs/frequently-asked-questions-page.mdx @@ -24,7 +24,7 @@ will do its own _GROUP BY_ and doing the work twice might slow down performance. Whether you use a table or a view, the important factor is whether your database is fast enough to serve it in an interactive fashion to provide a good user experience in Superset. -However, if you are using the SQL Lab, there is no such limitation, you can write sql query to join +However, if you are using the SQL Lab, there is no such limitation, you can write sql query to join multiple tables as long as your db account has access to the tables. ### How BIG can my datasource be?