Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion English/08_Using_Relational_Databases.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ Hello! I'm Ash Fernsby. My salary is 2158 euros per month.

The database query has been programmed inside the `getEmployeesByLastName` function.

The SQL statement for the query is first written into a string variable that has been names `sql` in the program
The SQL statement for the query is first written into a string variable that has been named `sql` in the program
code. When writing a program, it is recommended to check the operation of an SQL query in a database editor
(such as HeidiSQL). Only when the query works, it should be embedded into Python code. In this case the query
is given the value of the last name from the parameter variable.
Expand Down Expand Up @@ -225,3 +225,4 @@ Salary updated
```

A successful update can be confirmed directly from the database by using a database editor.