You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: content/docs/why/_index.md
+11-9
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,9 @@ toc: true
6
6
7
7
Before diving into the "why," let’s first understand the problem SQL Components aims to solve.
8
8
9
-
Consider a simple Java application that connects to a relational database like PostgreSQL to create a movie store. The database schema looks like this:
9
+
> Consider a simple Java application that connects to a relational database like PostgreSQL to create a movie store.
10
+
11
+
The database schema looks like this:
10
12
11
13
```sql
12
14
CREATETABLEmovie (
@@ -20,14 +22,14 @@ Now, let's add some movies:
20
22
21
23
```sql
22
24
INSERT INTO movie (title, directed_by) VALUES
23
-
('Inception', 'Christopher Nolan'),
24
-
('The Dark Knight', 'Christopher Nolan'),
25
-
('Interstellar', 'Christopher Nolan'),
26
-
('Dunkirk', 'Christopher Nolan'),
27
-
('Pulp Fiction', 'Quentin Tarantino'),
28
-
('The Matrix', 'Lana Wachowski'),
29
-
('Fight Club', 'David Fincher'),
30
-
('The Social Network', 'David Fincher');
25
+
('Inception', 'Christopher Nolan'),
26
+
('Pulp Fiction', 'Quentin Tarantino'),
27
+
('The Matrix', 'Lana Wachowski'),
28
+
('Dunkirk', 'Christopher Nolan'),
29
+
('Fight Club', 'David Fincher'),
30
+
('Interstellar', 'Christopher Nolan'),
31
+
('The Social Network', 'David Fincher'),
32
+
('The Dark Knight', 'Christopher Nolan');
31
33
```
32
34
33
35
Suppose you want to list the movies directed by `Christopher Nolan`. As a Java developer, your responsibilities include:
0 commit comments