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: episodes/04-ordering-commenting.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -73,8 +73,10 @@ their effects as we went along. For complex queries, this is a good strategy, t
73
73
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 <codeclass="language-plaintext highlighter-rouge">\--</code> 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:
74
74
75
75
```sql
76
-
/*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
77
-
join multiple tables because they represent a good example of using comments in SQL to explain more complex queries.*/
76
+
/*In this section, even though JOINS (see link below this code block)
77
+
are not introduced until Episode 6, we want to give an example how to
78
+
join multiple tables because they represent a good example of using
79
+
comments in SQL to explain more complex queries.*/
78
80
79
81
-- First we mention all the fields we want to display
Copy file name to clipboardExpand all lines: index.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ This Library Carpentry lesson introduces librarians to relational database manag
8
8
9
9
## Before You Start:
10
10
11
-
You will need to install **DB Browser for SQLite** and download the **doaj-article-sample** database. See [Setup](https://librarycarpentry.org/lc-sql/setup.html) for instructions and further information.
11
+
You will need to install **DB Browser for SQLite** and download the **doaj-article-sample** database. See [Setup](learners/setup.md) for instructions and further information.
0 commit comments