Skip to content

Commit 999859c

Browse files
committed
Simplify intro wording
1 parent 0f073be commit 999859c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

pages/intro.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ <h2>Why Learn SQL?</h2>
6161
<p>There are also situations where using SQL is far more efficient than Python. If your database resides on a server and your Python code executes on a different machine, any data you want to process has to be sent across some kind of network connection. Any filtering or aggregation that's needed is far better executed on the database server so that only the required data is sent across the network. If your process is to extract some data, manipulate it in some way and send it straight back to the database for persistence, that will almost always be more efficient if you issue SQL statements to the database server than bringing the data across the network and sending the results back again.</p>
6262

6363
<h2>Knowledge You Will Need</h2>
64-
<p>The tutorial assumes no knowledge of SQL at all and starts from the very basics. You will need some basic understanding of Python code although most of the content is suitable for Python beginners too. Where the Python code strays into more advanced concepts, there are links to the relevant documentation for you to follow.</p>
64+
<p>The tutorial assumes no knowledge of SQL at all and starts from the very basics. You will need some understanding of Python code although most of the content is suitable for Python beginners too. Where the Python code strays into more advanced concepts, there are links to the relevant documentation for you to follow.</p>
6565
<p>If you choose to use your own computer to run the tutorial code (details on those options are described in the <a href="/sql_python_tutorial/pages/howto">How To</a>), you will need to be comfortable using a command line terminal.</p>
6666

6767

templates/pages/intro.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ <h2>Why Learn SQL?</h2>
1616
<p>There are also situations where using SQL is far more efficient than Python. If your database resides on a server and your Python code executes on a different machine, any data you want to process has to be sent across some kind of network connection. Any filtering or aggregation that's needed is far better executed on the database server so that only the required data is sent across the network. If your process is to extract some data, manipulate it in some way and send it straight back to the database for persistence, that will almost always be more efficient if you issue SQL statements to the database server than bringing the data across the network and sending the results back again.</p>
1717

1818
<h2>Knowledge You Will Need</h2>
19-
<p>The tutorial assumes no knowledge of SQL at all and starts from the very basics. You will need some basic understanding of Python code although most of the content is suitable for Python beginners too. Where the Python code strays into more advanced concepts, there are links to the relevant documentation for you to follow.</p>
19+
<p>The tutorial assumes no knowledge of SQL at all and starts from the very basics. You will need some understanding of Python code although most of the content is suitable for Python beginners too. Where the Python code strays into more advanced concepts, there are links to the relevant documentation for you to follow.</p>
2020
<p>If you choose to use your own computer to run the tutorial code (details on those options are described in the <a href="/{{root}}/pages/howto">How To</a>), you will need to be comfortable using a command line terminal.</p>
2121

2222

0 commit comments

Comments
 (0)