2 रिपॉजिटरी
Updates to records in one table based on matching values found in another table through a join operation.
Distinct from Table Joining Operations: Specifically modifies data using joins, whereas Table Joining Operations focuses on retrieval/merging.
Explore 2 awesome GitHub repositories matching data & databases · Join-Based Updates. Refine with filters or upvote what's useful.
FreeSql is a .NET object-relational mapper and data access layer that translates object-oriented code into SQL for multiple relational database providers. It functions as a fluent SQL query builder and database schema synchronizer, allowing developers to align database table and index structures with entity class definitions. The framework is specifically optimized for .NET Native AOT to ensure reduced memory footprints and faster startup times. It includes a database traffic manager to distribute load through read-write splitting, dynamic table sharding, and tenant-based data isolation. Bro
Modifies data in one table based on matching values found in another related table through a join.
Jet is a schema-driven code generation tool and type-safe SQL builder for Go. It introspects database schemas to automatically generate builders and data models, enabling compile-time type checking for table and column references to prevent runtime errors. The project distinguishes itself through a fluent interface that mirrors native SQL syntax, allowing for the orchestration of complex queries including common table expressions, recursive queries, and nested JSON structures. It further optimizes data retrieval by binding query outputs directly into generated Go structures or raw byte slices
Enables updating records in one table based on values or filters from another table using joins.