qail-core 0.27.8

AST-native query builder - type-safe expressions, zero SQL strings
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! DML (Data Manipulation Language) SQL generation.
//!
//! This module contains functions for generating SELECT, INSERT, UPDATE, DELETE,
//! and other DML statements.

pub mod cte;
pub mod delete;
pub mod insert;
pub mod json_table;
pub mod select;
pub mod update;
pub mod upsert;
pub mod window;