From 9da5cd8fa9a63434d635b0cc952deb25b02bff38 Mon Sep 17 00:00:00 2001 From: TOUFIKI Zakarya <57439240+TOUFIKIzakarya@users.noreply.github.com> Date: Sat, 7 Jun 2025 16:35:50 +0200 Subject: [PATCH] (Typo) : Fix some double `the` in some sentences --- lessons/02-databases-and-tables/B-tables.md | 4 ++-- lessons/03-data/C-selects.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lessons/02-databases-and-tables/B-tables.md b/lessons/02-databases-and-tables/B-tables.md index 9cb4858..8764511 100644 --- a/lessons/02-databases-and-tables/B-tables.md +++ b/lessons/02-databases-and-tables/B-tables.md @@ -11,11 +11,11 @@ CREATE TABLE ingredients ( This will create our first table for us to start using. We will get into data types during the course but just know now that a VARCHAR is a string of max length 255 characters and an INTEGER is, well, an integer. -To see the table you created, run `\d` in your psql instance to see it and the the sequence that you created. The sequence stores the `id` counter. +To see the table you created, run `\d` in your psql instance to see it and the sequence that you created. The sequence stores the `id` counter. We now have a table. A table is the actual repository of data. Think of a database like a folder and a table like a spreadsheet. You can have many spreadsheets in a folder. Same with tables. -We now have a table, ingredients. Our table has two fields in it, an incrementing ID and a string that is the the title of the ingredients. You can think of fields like columns in a spreadsheet. +We now have a table, ingredients. Our table has two fields in it, an incrementing ID and a string that is the title of the ingredients. You can think of fields like columns in a spreadsheet. A table contains records. A record can be thought of as a row in a spreadsheet. Every time we insert a new record into a table, we're adding another row to our spreadsheet. diff --git a/lessons/03-data/C-selects.md b/lessons/03-data/C-selects.md index 1430e7e..177a091 100644 --- a/lessons/03-data/C-selects.md +++ b/lessons/03-data/C-selects.md @@ -53,7 +53,7 @@ FROM ingredients WHERE type = 'fruit'; ``` -This will give us all the fruits we had. What if we wanted to only select vegetables where the the IDs are less 20? +This will give us all the fruits we had. What if we wanted to only select vegetables where the IDs are less 20? ```sql SELECT *