Skip to content

Commit 268891b

Browse files
Choose a data storage approach in Azure
1 parent 0933007 commit 268891b

File tree

3 files changed

+47
-0
lines changed

3 files changed

+47
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# Choose a data storage approach in Azure
2+
3+
## Classify your data
4+
5+
An online retail business has different types of data. Each type of data might benefit from a different storage solution.
6+
7+
Application data can be classified in one of three ways: structured, semi-structured, and unstructured. Here, you'll learn how to classify your data so that you can choose the appropriate storage solution for the type of data.
8+
9+
![alt text](image.png)
10+
11+
```
12+
<Person Age="23">
13+
<FirstName>Quinn</FirstName>
14+
<LastName>Anderson</LastName>
15+
<Hobbies>
16+
<Hobby Type="Sports">Golf</Hobby>
17+
<Hobby Type="Leisure">Reading</Hobby>
18+
<Hobby Type="Leisure">Guitar</Hobby>
19+
</Hobbies>
20+
</Person>
21+
```
22+
23+
```
24+
{
25+
"firstName": "Quinn",
26+
"lastName": "Anderson",
27+
"age": "23",
28+
"hobbies": [
29+
{ "type": "Sports", "value": "Golf" },
30+
{ "type": "Leisure", "value": "Reading" },
31+
{ "type": "Leisure", "value": "Guitar" }
32+
]
33+
}
34+
```
35+
36+
```
37+
firstName: Quinn
38+
lastName: Anderson
39+
age: 23
40+
hobbies:
41+
- type: Sports
42+
value: Golf
43+
- type: Leisure
44+
value: Reading
45+
- type: Leisure
46+
value: Guitar
47+
```
Loading
276 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)