Skip to content

Commit 4997881

Browse files
committed
Renaming
1 parent c550cfd commit 4997881

8 files changed

+155
-1
lines changed

Notebooks/00_Miscellaneous_Formats.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -5535,7 +5535,7 @@
55355535
"name": "python",
55365536
"nbconvert_exporter": "python",
55375537
"pygments_lexer": "ipython3",
5538-
"version": "3.6.8"
5538+
"version": "3.7.6"
55395539
}
55405540
},
55415541
"nbformat": 4,

Notebooks/09_MySQL_JSON.ipynb

+154
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,154 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"metadata": {},
6+
"source": [
7+
"## Introduction to Databases\n",
8+
"\n",
9+
"### Using JSON fields in MySQL\n",
10+
"\n",
11+
"Sources: [here](https://www.sitepoint.com/use-json-data-fields-mysql-databases/) and [here](https://dev.mysql.com/doc/refman/5.7/en/json-search-functions.html)"
12+
]
13+
},
14+
{
15+
"cell_type": "markdown",
16+
"metadata": {},
17+
"source": [
18+
"The line between SQL and NoSQL databases has become increasingly blurred, with each camp adopting features from the other. MySQL 5.7+ InnoDB databases and PostgreSQL 9.2+ both directly support JSON document types in a single field. In this article, we’ll examine the MySQL 8.0 JSON implementation in more detail.\n",
19+
"\n",
20+
"Just Because You Can Store JSON it doesn’t follow you should. But there are some use cases, especially those tackled by NoSQL databases\n",
21+
"\n",
22+
"Normalization is a technique used to optimize the database structure. The First Normal Form (1NF) rule governs that every column should hold a single value — which is clearly broken by storing multi-value JSON documents."
23+
]
24+
},
25+
{
26+
"cell_type": "code",
27+
"execution_count": null,
28+
"metadata": {},
29+
"outputs": [],
30+
"source": []
31+
},
32+
{
33+
"cell_type": "markdown",
34+
"metadata": {},
35+
"source": [
36+
"#### Create a Table With a JSON Field\n",
37+
"\n",
38+
"Consider a shop selling books. All books have an ID, ISBN, title, publisher, number of pages and other clear relational data. Presume you want to add any number of category tags to each book. You could achieve this in SQL using: \n",
39+
"\n",
40+
"+ a tag table which stored each tag name with a unique ID, and\n",
41+
"+ a tagmap table with many-to-many records mapping book IDs to tag IDs\n",
42+
"\n",
43+
"It’ll work, but it’s cumbersome and considerable effort for a minor feature. Therefore, you can define a tags JSON field in your MySQL database’s book table:"
44+
]
45+
},
46+
{
47+
"cell_type": "code",
48+
"execution_count": null,
49+
"metadata": {},
50+
"outputs": [],
51+
"source": [
52+
"CREATE TABLE `book` (\n",
53+
" `id` MEDIUMINT(8) UNSIGNED NOT NULL AUTO_INCREMENT,\n",
54+
" `title` VARCHAR(200) NOT NULL,\n",
55+
" `tags` JSON DEFAULT NULL,\n",
56+
" PRIMARY KEY (`id`)\n",
57+
") ENGINE=INNODB;\n"
58+
]
59+
},
60+
{
61+
"cell_type": "markdown",
62+
"metadata": {},
63+
"source": [
64+
"Note that JSON columns can’t have a default value, be used as a primary key, be used as a foreign key, or have an index. You can create secondary indexes on generated virtual columns, but it’s easier and more practical to retain a value in a separate field if indexes are required.\n",
65+
"\n",
66+
"### Adding JSON Data\n",
67+
"\n",
68+
"Whole JSON documents can be passed in INSERT or UPDATE statements. For example, our book tags can be passed as an array (inside a string):"
69+
]
70+
},
71+
{
72+
"cell_type": "code",
73+
"execution_count": null,
74+
"metadata": {},
75+
"outputs": [],
76+
"source": [
77+
"INSERT INTO `book` (`title`, `tags`)\n",
78+
"VALUES (\n",
79+
" 'ECMAScript 2015: A SitePoint Anthology',\n",
80+
" '[\"JavaScript\", \"ES2015\", \"JSON\"]'\n",
81+
");"
82+
]
83+
},
84+
{
85+
"cell_type": "markdown",
86+
"metadata": {},
87+
"source": [
88+
"JSON can also be created with these:\n",
89+
"\n",
90+
"+ JSON_ARRAY() function, which creates arrays. \n",
91+
"+ JSON_OBJECT() function, which creates objects.\n",
92+
"+ JSON_QUOTE() function, which quotes a string as a JSON value.\n",
93+
"\n",
94+
"\n",
95+
"For example:"
96+
]
97+
},
98+
{
99+
"cell_type": "code",
100+
"execution_count": null,
101+
"metadata": {},
102+
"outputs": [],
103+
"source": [
104+
"-- returns [1, 2, \"abc\"]:\n",
105+
"SELECT JSON_ARRAY(1, 2, 'abc');"
106+
]
107+
},
108+
{
109+
"cell_type": "code",
110+
"execution_count": null,
111+
"metadata": {},
112+
"outputs": [],
113+
"source": [
114+
"-- returns {\"a\": 1, \"b\": 2}:\n",
115+
"SELECT JSON_OBJECT('a', 1, 'b', 2);"
116+
]
117+
},
118+
{
119+
"cell_type": "code",
120+
"execution_count": null,
121+
"metadata": {},
122+
"outputs": [],
123+
"source": []
124+
},
125+
{
126+
"cell_type": "code",
127+
"execution_count": null,
128+
"metadata": {},
129+
"outputs": [],
130+
"source": []
131+
}
132+
],
133+
"metadata": {
134+
"kernelspec": {
135+
"display_name": "Python 3",
136+
"language": "python",
137+
"name": "python3"
138+
},
139+
"language_info": {
140+
"codemirror_mode": {
141+
"name": "ipython",
142+
"version": 3
143+
},
144+
"file_extension": ".py",
145+
"mimetype": "text/x-python",
146+
"name": "python",
147+
"nbconvert_exporter": "python",
148+
"pygments_lexer": "ipython3",
149+
"version": "3.7.6"
150+
}
151+
},
152+
"nbformat": 4,
153+
"nbformat_minor": 4
154+
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)