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...
Flyway by Redgate • Database Migrations Made Easy.
-
Updated
Aug 26, 2020 - Java
OrientDB is the most versatile DBMS supporting Graph, Document, Reactive, Full-Text, Geospatial and Key-Value models in one Multi-Model product. OrientDB can run distributed (Multi-Master), supports SQL, ACID Transactions, Full-Text indexing and Reactive Queries. OrientDB Community Edition is Open Source using a liberal Apache 2 license.
-
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
Apache Ignite
-
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
JSqlParser parses an SQL statement and translate it into a hierarchy of Java classes. The generated hierarchy can be navigated using the Visitor Pattern
-
Updated
Aug 25, 2020 - Java
Main Liquibase Source
-
Updated
Aug 26, 2020 - Java
The ToroDB solution to provide better analytics on top of MongoDB and make it easier to migrate from MongoDB to SQL
-
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)
An easy-to-use BI server built for SQL lovers. Power data analysis in SQL and gain faster business insights.
-
Updated
May 31, 2020 - Java
Keep your code spotless
-
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