🧚 Dengarkan! Beekeeper Studio adalah GUI database yang cepat, modern, dan open source Unduh
January 25, 2023 Oleh 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 Adalah GUI Database Gratis & Open Source

Alat query SQL & editor terbaik yang pernah saya gunakan. Menyediakan semua yang saya butuhkan untuk mengelola database saya. - ⭐⭐⭐⭐⭐ Mit

Beekeeper Studio cepat, intuitif, dan mudah digunakan. Beekeeper mendukung banyak database dan berfungsi dengan baik di Windows, Mac, dan Linux.

Versi Linux Beekeeper 100% lengkap, tanpa potongan, tanpa kompromi fitur.

Apa Kata Pengguna Tentang Beekeeper Studio

★★★★★
"Beekeeper Studio sepenuhnya menggantikan alur kerja SQL lama saya. Cepat, intuitif, dan membuat pekerjaan database menyenangkan lagi."
— Alex K., Pengembang Database
★★★★★
"Saya sudah mencoba banyak GUI database, tapi Beekeeper menemukan keseimbangan sempurna antara fitur dan kesederhanaan. Langsung berfungsi."
— Sarah M., Full Stack Engineer

Siap Meningkatkan Alur Kerja SQL Anda?

download Unduh Gratis