From 147459bdf2b431bc72d3edb9223088b8ba39dc0a Mon Sep 17 00:00:00 2001 From: Jakub Knejzlik Date: Tue, 7 Jan 2025 14:33:44 +0100 Subject: [PATCH] Add union example --- src/stories/1_Query.stories.mdx | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/stories/1_Query.stories.mdx b/src/stories/1_Query.stories.mdx index 3b15d67..b8a0a83 100644 --- a/src/stories/1_Query.stories.mdx +++ b/src/stories/1_Query.stories.mdx @@ -61,6 +61,16 @@ Q.select().from('table', 't'); `} /> +### Union + + + ### Joining Tables Join operations are essential in SQL for combining rows from two or more tables based on a related column. The Query Builder supports various types of joins: INNER, LEFT, RIGHT, and FULL joins.