SQL Data Types
JSON Type
Overview
JSON stands for JavaScript Object Notation. It is an open standard format with key-value pairs to transport data between a server and a web application.
Syntax
The JSON data type in Oxla has the following syntax:
Examples
1. Create a Table
First, create the orders table using the below command:
This will create a table with the orders_Detail
column to store key-value pairs of data.
2. Insert Data
Next, insert data into the orders table as follows:
This will insert data values where orders_Detail
has the following keys:
-
customer
: it will store a customer’s data who purchased the product. -
items
: it will store the order details,product
&qty
.
3. Retrieve Data
Use the SELECT
command to retrieve the orders table’s data.
You will get the following output:
It is normal for the JSON type’s result to look disordered.