diff --git a/episodes/04-ordering-commenting.md b/episodes/04-ordering-commenting.md index ef06f3aa..a7c5f598 100644 --- a/episodes/04-ordering-commenting.md +++ b/episodes/04-ordering-commenting.md @@ -73,8 +73,10 @@ their effects as we went along. For complex queries, this is a good strategy, t When the queries become more complex, it can be useful to add comments to express to yourself, or to others, what you are doing with your query. Comments help explain the logic of a section and provide context for anyone reading the query. It's essentially a way of making notes within your SQL. In SQL, comments begin using \-- and end at the end of the line. To mark a whole paragraph as a comment, you can enclose it with the characters /\* and \*/. For example, a commented version of the above query can be written as: ``` -/*In this section, even though JOINS (see link below this code block) are not introduced until Episode 6, we want to give an example how to -join multiple tables becasue they represent a good example of using comments in SQL to explain more complex queries.*/ +/*In this section, even though JOINS (see link below this code block) +are not introduced until Episode 6, we want to give an example how to +join multiple tables becasue they represent a good example of using +comments in SQL to explain more complex queries.*/ -- First we mention all the fields we want to display SELECT articles.Title, articles.First_Author, journals.Journal_Title, publishers.Publisher