cycquery.opsΒΆ
Query operations.
Classes
Add a column to some columns. |
|
Construct and add an interval column to some columns. |
|
Construct and add a datetime.timedelta object to some columns. |
|
Add a numeric value to some columns. |
|
Combine multiple condition query ops using an And. |
|
Apply function(s) to column(s). |
|
Cast columns to a specified type. |
|
Filter rows based on a timestamp being after some date. |
|
Filter rows based on a timestamp being before some date. |
|
Filter rows based on ending with some string. |
|
Filter rows based on being equal, or not equal, to some value. |
|
Filter rows based on greater than (or equal), to some value. |
|
Filter rows based on having a value in list of values. |
|
Filter rows based on a timestamp being in a list of years. |
|
Filter rows based on a timestamp column being in a list of years. |
|
Filter rows based on less than (or equal), to some value. |
|
Filter rows by a LIKE condition. |
|
Filter rows based on matching a regular expression. |
|
Filter rows based on starting with some string. |
|
Filter rows on based on having substrings. |
|
Count the number of rows. |
|
Get distinct rows. |
|
Drop some columns. |
|
Remove rows with empty values in some specified columns. |
|
Remove rows with null values in some specified columns. |
|
Extract a component such as year or month from a timestamp column. |
|
Fill NULL values with a given value. |
|
Aggregate over a group by object. |
|
Join a table with another table. |
|
Keep only the specified columns in a table. |
|
Limit the number of rows returned in a query. |
|
Add a literal column to a table. |
|
Combine multiple condition query ops using an OR. |
|
Order, or sort, the rows of a table by some columns. |
|
Base class for query operations. |
|
Randomize order of table rows. |
|
Rename some columns. |
|
Reorder the columns in a table. |
|
Reorder a number of columns to come after a specified column. |
|
Sequential query operations class. |
|
Get substring of a string column. |
|
Trim the whitespace from some string columns. |
|
Union two tables. |