The SQLite command line interface provides us with the ability to auto-generate SQL INSERT
statements from a query. This can be done by changing the output mode to insert
.
Category: DBMS
Database Management Systems
SQLite JSON_REMOVE()
We can use the SQLite json_remove()
function to remove one or more elements from a JSON object or array.
We pass the original JSON as the first argument when we call the function, followed by one or more paths that specify which elements to remove. By “elements”, I mean either array elements or object members (key/value pairs).
Continue readingSQLite JSON_PATCH()
In SQLite, the json_patch()
function can be used to add, modify, or delete elements of a JSON Object.
To do this, it runs the RFC-7396 MergePatch algorithm to apply a given patch against the given JSON input.
We pass the original JSON as the first argument when we call the function, followed by the patch. The function then applies that patch against JSON in the first argument.
Continue readingFix “ERROR 3942 (HY000): Each row of a VALUES clause must have at least one column” when using the VALUES Statement in MySQL
If you’re getting an error that reads “ERROR 3942 (HY000): Each row of a VALUES clause must have at least one column” in MySQL, you could have an empty row constructor when using the VALUES
statement.
To fix this issue, make sure you’ve got at least one value in each ROW()
clause within the VALUES
statement.
SQLite JSON_REPLACE()
The SQLite json_replace()
function allows us to replace an existing value in a JSON document with another value.
We pass the original JSON as the first argument when we call the function, followed by the path of the value to replace, followed by the value to replace.
We can also replace multiple key/value pairs if required.
Continue readingSQLite JSON_SET()
The SQLite json_set()
function allows us to insert into, or replace, a value in a JSON document.
We pass the original JSON as the first argument when we call the function, followed by a path that specifies where to insert/replace the new value, followed by the value to insert/replace.
We can also insert/replace multiple key/value pairs if required.
Continue reading3 Ways to Delete Duplicate Rows in SQL Server while Ignoring the Primary Key
The following examples use T-SQL to delete duplicate rows in SQL Server while ignoring the primary key or unique identifier column.
More specifically, the examples delete duplicate rows but keep one. So, given two identical rows, one is deleted and the other remains. This is often referred to as “de-duping” the table, “deduplication” of the table, etc.
Continue readingSQLite JSON_INSERT()
The SQLite json_insert()
function allows us to insert a new value into a JSON document.
We pass the original JSON as the first argument when we call the function, followed by a path that specifies where to insert the new value, followed by the value to insert.
We can also insert multiple key/value pairs if required.
Continue readingSQLite JSON_EXTRACT()
In SQLite, the json_extract()
function extracts and returns one or more values from well-formed JSON.
We pass the JSON as an argument when we call the function, and it returns the applicable value/s.
We can specify one or more paths to extract from the JSON document.
Continue readingFix “ERROR 1222 (21000): The used SELECT statements have a different number of columns” when using UNION in MariaDB
When using the UNION
operator in MariaDB, you may encounter the following error: “ERROR 1222 (21000): The used SELECT statements have a different number of columns”.
This error occurs when the number of columns returned by each SELECT
statement is different.
The way to fix this is to ensure that both SELECT
statements return the same number of columns.