awesome-repositories.com
Blog
awesome-repositories.com

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoAcerca deCómo clasificamosPrensaServidor MCP
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

7 repositorios

Awesome GitHub RepositoriesQuery Result Formatting

Capabilities for sorting, offsetting, and refining the delivery of query result sets.

Distinct from Query Filters: Covers sorting and offsetting, which is broader than just filtering.

Explore 7 awesome GitHub repositories matching data & databases · Query Result Formatting. Refine with filters or upvote what's useful.

Awesome Query Result Formatting GitHub Repositories

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • sqlite/sqliteAvatar de sqlite

    sqlite/sqlite

    9,909Ver en GitHub↗

    SQLite es un motor de base de datos relacional sin servidor y una biblioteca basada en C que almacena datos en un único archivo de disco local. Funciona como una base de datos SQL embebida, integrándose directamente en las aplicaciones sin necesidad de un proceso de servidor independiente. El motor incluye capacidades especializadas para la indexación de búsqueda de texto completo y consultas de datos espaciales utilizando estructuras R-Tree para rangos de coordenadas geográficas o geométricas. El sistema proporciona un amplio soporte para la manipulación de datos SQL, recuperación y reparación de bases de datos, y seguimiento de cambios para sincronizar modificaciones entre bases de datos. También cuenta con una interfaz basada en terminal para la gestión y configuración de la base de datos.

    Provides utilities to format and refine the structure of query result sets for improved readability.

    C
    Ver en GitHub↗9,909
  • oceanbase/miniobAvatar de oceanbase

    oceanbase/miniob

    4,318Ver en GitHub↗

    MiniOB is an open-source educational relational database kernel designed for learning the internals of database systems. It implements a dual-engine storage architecture combining B+ Tree and LSM-Tree, supports SQL parsing and query execution, and provides transactional processing with multi-version concurrency control. The system communicates with clients using the MySQL wire protocol and includes a vector database extension for storing and querying high-dimensional vectors. The project distinguishes itself through its comprehensive coverage of core database concepts in a single, learnable c

    Output query results with column headers and row values separated by spaced middle dots following strict ordering rules.

    C++classroomcplusplusdatabase
    Ver en GitHub↗4,318
  • apache/ageAvatar de apache

    apache/age

    4,236Ver en GitHub↗

    Apache AGE is a graph database extension for PostgreSQL that adds openCypher graph query capabilities directly within the relational database environment. It functions as a loadable extension that translates Cypher graph traversal queries into SQL expressions, enabling users to run pattern matching and path analysis alongside standard SQL operations within a single database instance. The extension stores labeled, directed property graphs as isolated schemas with internal relational tables for vertices, edges, and labels, preventing cross-graph interference. It supports hybrid query execution

    Orders results by several properties sequentially, using the next property to break ties when values are equal.

    Cage-databaseagensgraphanalytics
    Ver en GitHub↗4,236
  • kuzudb/kuzuAvatar de kuzudb

    kuzudb/kuzu

    3,965Ver en GitHub↗

    Kùzu is an embedded property graph database engine designed for high-performance analytical queries and local data management. It operates as a library within the host application process, utilizing a columnar-based storage architecture and just-in-time query compilation to execute complex graph traversals and pattern matching efficiently. By mapping database files directly into system memory, it ensures data durability and high-speed access while maintaining ACID-compliant transactional integrity. The engine distinguishes itself by integrating vector similarity search and full-text search di

    Configures the output format of query results into JSON, CSV, or HTML for easier integration.

    C++cypherdatabaseembeddable
    Ver en GitHub↗3,965
  • geektutu/high-performance-goAvatar de geektutu

    geektutu/high-performance-go

    3,888Ver en GitHub↗

    This project is a comprehensive performance programming guide and reference for the Go language, focusing on runtime efficiency and memory optimization. It provides a collection of patterns and techniques designed to increase execution speed by reducing garbage collection overhead and optimizing memory usage. The resource distinguishes itself through detailed reference implementations for memory optimization, such as escape analysis, object pooling, and structure memory alignment. It offers specific strategies for reducing binary size and improving CPU cache efficiency through structure memor

    Implements capabilities for refining and formatting the delivery of query result sets.

    Goeffective-golanggogolang
    Ver en GitHub↗3,888
  • cozodb/cozoAvatar de cozodb

    cozodb/cozo

    3,880Ver en GitHub↗

    Cozo is a logic-based database engine that functions as a relational data store, an embedded graph database, and a temporal vector database. It utilizes a Datalog-inspired query language to execute relational, recursive, and graph queries. The system distinguishes itself through specialized indexing for high-dimensional vector similarity searches and near-duplicate detection using locality sensitive hashing. It also provides built-in temporal versioning, allowing for historical state retrieval and time-travel queries to access data as it existed at specific points in time. Its broader capabi

    Enables filtering, sorting, and offsetting result sets using specific query options to refine data delivery.

    Rustclient-servercozocozoscript
    Ver en GitHub↗3,880
  • simolus3/driftAvatar de simolus3

    simolus3/drift

    3,231Ver en GitHub↗

    Drift is a type-safe SQL persistence library and relational mapper that provides a structured way to map database tables to classes and execute SQL queries with build-time validation. It functions as a type-safe query builder and a wrapper for SQLite and PostgreSQL, eliminating manual result set parsing by binding query outputs to native objects. The project distinguishes itself through a build-time code generation system that produces type-safe APIs and validates raw SQL statements against database versions before execution. It features reactive query streaming, which transforms SQL queries

    Provides capabilities for sorting query results based on one or more columns with control over null placement.

    Dartdartdart-build-systemflutter
    Ver en GitHub↗3,231
  1. Home
  2. Data & Databases
  3. Query Sorting
  4. Query Result Formatting

Explorar subetiquetas

  • Multi-Property SortingOrders results by several properties sequentially, using the next property to break ties when values are equal. **Distinct from Query Result Formatting:** Distinct from Query Result Formatting: focuses on sorting by multiple properties with tie-breaking, not general result formatting like offsetting.
  • Tabular Output FormattersFormats query results into structured tables with column headers and delimited rows for terminal display. **Distinct from Query Result Formatting:** Distinct from Query Result Formatting: focuses specifically on the visual table layout with headers and delimiters, not sorting or offsetting.