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 23,011 public repositories matching this topic...
Issue Creation Checklist
- I have read the contribution guidelines
Feature Description
When SQL errors occur, make the 'mes
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
Describe the problem
To use a timestamp value in decimal, in Postgres, I use the to_timestamp() function as follows
select to_timestamp(1646906263.278);Since cockroach doesn't have to_timestamp(), I use a cast instead:
select 1646906263.278::timestamptz;But it results in SQL Error [42846]: ERROR: invalid cast: decimal -> timestamptz
Casting an inte
-
Updated
Mar 19, 2022 - C++
Add basic CI
We already have some scripts in the scripts directory. It would be good to run them for every PR.
This is also a great task for beginners.
## Python/Regex fix
-
Updated
Mar 19, 2022 - C++
In https://github.com/taosdata/TDengine/blob/develop/src/client/src/tscPrepare.c, Local variable loopCont is assigned only once, to a constant value, making it effectively constant throughout its scope. If this is not the intent, examine the logic to see if there is a missing assignment that would make loopCont not remain constant.
So the 1567th line should be removed.
]]/dbname[?param1=value1&...¶mN=valueN]. When dbname is "mydb", It works, but not work when dbname is "mydb/feature-branch".
-
Updated
Mar 6, 2022 - JavaScript
-
Updated
Mar 15, 2022 - Go
Describe the Bug
Sending invalid GUIDs to API endpoints will cause them to return an error code "500 Internal Server Error".
Steps To Reproduce
- HTTP DELETE to API endpoint such as /api/emergency-access/ with invalid GUID like "asd"
Expected Result
Endpoint returns a "400 Bad Request"
Actual Result
Endpoint returns a "500 Internal Server Error"
Environment
FEAT: IN operator
-
Updated
Jan 24, 2022 - Python
-
Updated
Mar 18, 2022 - Go
Describe the Bug
The JSON response sent back over HTTP doesn't encode certain characters correctly.
For example, if a value in a string column contains the char \1 the byte value is copied verbatim in the response, breaking the client:
>>> json.loads('"\1"')
...
json.decoder.JSONDecodeError: Invalid control character at: line 1 column 2 (char 1)Instead, we shou
Quickstart review
- Missing information on how to create other databases
- Missing information on how to switch to other databases
- When using time travel, we don’t know where to get the transaction number from - we should show this to the user after committing data (this may be a missing capability in immudb / tools).
- The last long query example in the quick start is incorrect (incorrect
-
Updated
Mar 12, 2022 - Jupyter Notebook
-
Updated
Mar 18, 2022 - C#
