SQL
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.
Here are 1,592 public repositories matching this topic...
-
Updated
Aug 26, 2020 - Java
-
Updated
Aug 26, 2020 - Java
Running : CLI v0.11.0, Server v0.11.0
(pulled from confluentinc/ksqldb-server:0.11.0)
Creating a stream with a field named "size" results in the following error :
extraneous input 'size' expecting {'EMIT'
It seems like size is considered a reserved keyword.
Creating the stream with CREATE STREAM trades ( "size" DOUBLE ) works.
Looks similar to https://github.com/confluentinc/ksql/issu
-
Updated
Aug 27, 2020 - Java
Use case:
Have better compatibility with PostgreSQL tools
Feature description:
PostgreSQL supports various Data Type Formatting Functions
CrateDB has date_format and format as alternative, but for improved tooling support it would be good to have the PostgreSQL variants:
- `to_char(timestamp, text
-
Updated
Aug 25, 2020 - Java
-
Updated
Aug 26, 2020 - Java
-
Updated
Oct 25, 2018 - Java
LIKE implementation
QuestDB implements regex string match with the operators ~= 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)
-
Updated
May 31, 2020 - Java
-
Updated
Aug 25, 2020 - Java
SELECT custkey, sum(totalprice)
FROM orders
GROUP BY custkey
ORDER BY 2 DESCEXPLAIN
Query Plan
---------------------------------------------------------------------------------------
Fragment 0 [SINGLE]
Output layout: [custkey, sum]
Output partitioning: SINGLE []
Stage Execution Strategy: UNGROUPED_EXECUTION
Currently, the JDBC string containing the host name and port is hardcoded. For example, consider the connection string for MySQL:
It would be desirable to make this configurable. We could provide an option to set the JDBC string for each DBMS. For example, for MySQL,
Sometimes it is needed to store compressed data in the DB. Unfortunately not all the DBs have built-in compression and FUSE compressed FSes are not available for every OS. So it may make sense to store compressed binary blobs in the DB.
Unfortunately when one sees them in DBeaver he sees them compressed, but often they are needed uncompressed. So it'd be nice to have a feature to decompress the