Skip to content

Commit

Permalink
Merge pull request #1706 from hanifanazka/patch-1
Browse files Browse the repository at this point in the history
fix one character typo
  • Loading branch information
timsehn authored Sep 1, 2023
2 parents b3e52d6 + b0cdd79 commit 04e1941
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/introduction/getting-started/database.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ Query OK, 5 rows affected (0.01 sec)
mysql> select first_name, last_name, team_name from employees
join employees_teams on (employees.id=employees_teams.employee_id)
join teams on (teams.id=employees_teams.team_id)\
join teams on (teams.id=employees_teams.team_id)
where team_name='Engineering';
+------------+-----------+-------------+
| first_name | last_name | team_name |
Expand Down

0 comments on commit 04e1941

Please sign in to comment.