From 569f92afd3be12b15fc7b762ad94c8f96f013ca9 Mon Sep 17 00:00:00 2001 From: agamennone-siae Date: Tue, 27 Jan 2026 21:27:15 +0000 Subject: [PATCH] init docs --- docs/querying/union.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 docs/querying/union.md diff --git a/docs/querying/union.md b/docs/querying/union.md new file mode 100644 index 000000000..28dc4b04f --- /dev/null +++ b/docs/querying/union.md @@ -0,0 +1,8 @@ +--- +sidebar_position: 6 +title: Union Queries +--- + +# UNION Queries + +Sequelize provides a way to combine the results of multiple `SELECT` queries into a single result set using the `UNION` operator. This is achieved using the `sequelize.union` method.