| Jul | AUG | Sep |
| 27 | ||
| 2019 | 2020 | 2021 |
COLLECTED BY
Collection: github.com
SQL stands for structured query language. It uses commands such as "select", "insert", "update", "delete". Some common relational database management systems that use SQL are: Oracle, MySQL, Microsoft SQL Server, PostgreSQL, etc.
date_format and format as alternative, but for improved tooling support it would be good to have the PostgreSQL variants:
● `to_char(timestamp, text
Read more
complexity: 3-5
contributions welcome
driver: PostgreSQL JDBC
enhancement
Open
~= and !~. However, LIKE is not implemented.
Describe the solution you'd like
Implement LIKE such that
column LIKE pattern becomes ~=(column, pattern)
NOT column LIKE pattern becomes !~(column, pattern)
Read more
New feature
SQL
good first issue
Open
SELECT custkey, sum(totalprice) FROM orders GROUP BY custkey ORDER BY 2 DESC
Query Plan
---------------------------------------------------------------------------------------
Fragment 0 [SINGLE]
Output layout: [custkey, sum]
Output partitioning: SINGLE []
Stage Execution Strategy: UNGROUPED_EXECUTION
Read more
bug
good first issue
Open