pypika icon indicating copy to clipboard operation
pypika copied to clipboard

PyPika is a python SQL query builder that exposes the full richness of the SQL language using a syntax that reflects the resulting query. PyPika excels at all sorts of SQL queries but is especially us...

Results 190 pypika issues
Sort by recently updated
recently updated
newest added

Hi I am using Pypika with Snowflake and trying to create a custom function for Snowflakes OBJECT_CONSTRUCT function. Snowflake docs - https://docs.snowflake.com/en/sql-reference/functions/object_construct. This function takes in n parameters. With every...

I'm trying to add `NULLS FIRST` or `NULLS LAST` to an `ORDER BY`, but I cannot figure out how to do this. Is this functionality missing? Any hint on how...

ClickHouse supports using a table identifier directly with `IN`. For example, this is a valid ClickHouse query: ``` WITH y AS ( SELECT n FROM values('n int', 1, 2) )...

Hello, the current project has added a lot of functions and fixed a lot of bugs, but no new version has been released for nearly two years. When will the...

```py print(Query.into(member).columns('a', 'b').insert(1, 2).returning('*')) ```

I tried to construct a query that accesses inner object inside a json. So if I have a JSONB column called `data` with the value: ``` { "array_key": ["value1", "value2",...

This commit adds 2 sql functions that are used widely on date columns in a table. MONTH -> returns the Month of the datefield DAYOFMONTH -> returns the Day of...

## Checklist: - [x] I have read the **CONTRIBUTING** document. - [x] My code follows the code style of this project. - [x] All new and existing tests passed.

### Summary Clickhouse SQL has an optional [`SETTINGS` clause][settings-clause] with `SELECT`s which can be used to configure [all kinds of options][settings]. This PR adds a `settings` method to `ClickHouseQueryBuilder` to...