forked from rhuanmmaciel/DBest
-
Notifications
You must be signed in to change notification settings - Fork 19
18 examples
mergen-sergio edited this page Sep 16, 2025
·
1 revision
This section presents various ways to express queries in DBest, including SQL representations and alternative request structures.
DBest supports multiple ways to formulate the same query, offering flexibility in operator arrangements and query execution strategies.
The examples provided focus on subqueries, a crucial component of complex SQL queries. Subqueries involve nested processing and often include correlated variables. DBest provides specialized operators to efficiently handle subqueries and capture their nuances.
The following examples illustrate different use cases:
- Data Sources
- Operators
- Creating a query tree
- Using basic operators
- Running queries
- Other query options
- Working with CSV
- Working with temporary tables
- Understanding schemas
- Understanding indexes
- Creating indexes
- Equi-joins and non-equi-joins
- Join types
- Join algorithms
- Using boolean expressions
- Comparing query costs
- Optimizarion techniques
- Query Examples