Expand description
Implementation of PostgreSQL dialect of SQL, including some PostgreSQL specific features and tools.
§Supported statements
See each function’s docs for details on supported clauses and features.
| Entry function | SQL statement |
|---|---|
select | SELECT |
from | SELECT (starting from FROM clause) |
insert_into | INSERT INTO |
delete_from | DELETE FROM |
update | UPDATE |
with | WITH |
create_table | CREATE TABLE |
§Tools
| Tool | Description |
|---|---|
Parameters | Generator of statement parameter placeholders |
Re-exports§
pub use general::with;pub use general::Aliasable;pub use statements::create_table;pub use statements::delete_from;pub use statements::from;pub use statements::insert_into;pub use statements::select;pub use statements::update;pub use statements::ColumnDefinitionable;pub use statements::CreateTable;pub use statements::DeleteFrom;pub use statements::FromSelectBuilder;pub use statements::InsertInto;pub use statements::Joinable;pub use statements::Orderable;pub use statements::Select;pub use statements::Update;pub use tools::Parameters;
Modules§
- general
- Bits that are usable in different types of statements
- statements
- Specific statement related functions, types and traits.
- tools
- PostgreSQL-specific tools to make your life easier