🧚 Ascolta! Beekeeper Studio è una GUI per database veloce, moderna e open source Scarica
January 25, 2023 Di Matthew Rathbone

JSON, or JavaScript Object Notation, is a format for storing and exchanging data. It is a lightweight, text-based, and human-readable format that is easy for machines to parse and generate. In SQLite, JSON can be stored and queried in a few different ways.

Using the JSON1 Extension

One way to store JSON in SQLite is to use the JSON1 extension, which provides functions for encoding and decoding JSON. To use the JSON1 extension, you first need to enable it by running the following command:

SELECT load_extension('/path/to/json1/extension');

Once the extension is enabled, you can create a table that has a column of type JSON using the following SQL statement:

CREATE TABLE users (
  id INTEGER PRIMARY KEY,
  data JSON
);

Inserting JSON Data

To insert a JSON value into this table, you can use the json_encode function provided by the JSON1 extension, like this:

INSERT INTO users (id, data) VALUES (1, json_encode({
  "name": "Alice",
  "age": 25,
  "email": "alice@example.com"
}));

Querying JSON Data

To query this table, you can use the json_extract function, which allows you to extract values from the JSON column by specifying a JSON path. For example, to get the email address of the user with id 1, you can use the following query:

SELECT json_extract(data, '$.email') AS email
FROM users
WHERE id = 1;

Store JSON in BLOB

Another way to store and query JSON in SQLite is to use the BLOB type. In this case, you can create a table with a BLOB column like this:

CREATE TABLE users (
  id INTEGER PRIMARY KEY,
  data BLOB
);

Inserting JSON into a BLOB Column

To insert a JSON value into this table, you can use the json_encode function to encode the value as a string, and then use the hex function to convert it to a BLOB, like this:

INSERT INTO users (id, data) VALUES (1, hex(json_encode({
  "name": "Alice",
  "age": 25,
  "email": "alice@example.com"
})));

Querying JSON in a BLOB Column

To query this table, you can use the JSON_EXTRACT function provided by the JSON1 extension, but you need to convert the BLOB value back to a string using the unhex function, like this:

SELECT json_extract(unhex(data), '$.email') AS email
FROM users
WHERE id = 1;

Summary

In conclusion, SQLite provides two ways to store and query JSON values: using the JSON1 extension and using the BLOB type. Both approaches have their own advantages and disadvantages, and which one you choose will depend on your specific needs.

If you need to convert JSON data to SQL INSERT statements, check out our free JSON to SQL Converter tool.

Beekeeper Studio È Una GUI per Database Gratuita e Open Source

Il miglior strumento per query SQL ed editor che abbia mai usato. Fornisce tutto ciò di cui ho bisogno per gestire il mio database. - ⭐⭐⭐⭐⭐ Mit

Beekeeper Studio è veloce, intuitivo e facile da usare. Beekeeper supporta molti database e funziona benissimo su Windows, Mac e Linux.

La versione Linux di Beekeeper è al 100% completa, senza tagli e senza compromessi sulle funzionalità.

Cosa Dicono Gli Utenti Di Beekeeper Studio

★★★★★
"Beekeeper Studio ha completamente sostituito il mio vecchio workflow con SQL. È veloce, intuitivo e rende di nuovo piacevole lavorare con i database."
— Alex K., Sviluppatore Database
★★★★★
"Ho provato molte GUI per database, ma Beekeeper trova il perfetto equilibrio tra funzionalità e semplicità. Funziona e basta."
— Sarah M., Ingegnere Full Stack

Pronto a Migliorare il Tuo Workflow con SQL?

download Scarica Gratis