Contenido del Curso
Introduction to SQL
Introduction to SQL
2. Filtering Data
The WHERE ClauseChallenge: Help a Reader Find Their Favorite GenreChallenge: Fetching Older BooksConditional Expressions: Comparison OperatorsChallenge: Avoid the Damaged BooksChallenge: Highlight New ArrivalsChallenge: Budget-Friendly BooksConditional Expressions: The AND OperatorChallenge: Find Specific Books for a ReaderChallenge: Defining RangesChallenge: Multiple ConditionsConditional Expressions: The OR OperatorChallenge: Matching Multiple OptionsChallenge: Excluding A RangeConditional Expressions: The NOT OperatorChallenge: Negating a Range
3. Sorting Data
Basic SortingChallenge: Sorting the Library CatalogueSorting by Multiple ColumnsChallenge: Further Sorting the CatalogueSorting after Filtering DataChallenge: Find the Cheapest BooksChallenge: Help a Customer Find a BookThe LIMIT KeywordChallenge: Select Books for the Collector's SectionChallenge: Affordable Books
4. Populating a Database
Creating a TableChallenge: Creating a new Books TableInserting Rows into a TableChallenge: Inserting DataChallenge: Inserting More DataInserting Multiple RowsChallenge: Inserting Bulk DataPrimary KeysThe SERIAL KeywordChallenge: Changing the Books StructureSpecifying Default ValuesChallenge: Further Improving the Books Table
5. Updating & Deleting Data
Challenge: Inserting More Data
Now that you're getting the hang of adding data to the library's database, it's time to insert another record into the books
table.
Tarea
Swipe to show code editor
Use the shorter syntax of the INSERT
statement to add the following book details:
- Title: 1984
- Author: George Orwell
- Genre: Dystopian
- Published Year: 1949
- ISBN: 9780451524935
- Publisher: Secker & Warburg
- Pages: 328
- Language: English
- Availability: Yes
Solución
Cambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones
¿Todo estuvo claro?
¡Gracias por tus comentarios!
Sección 4. Capítulo 5
Challenge: Inserting More Data
Now that you're getting the hang of adding data to the library's database, it's time to insert another record into the books
table.
Tarea
Swipe to show code editor
Use the shorter syntax of the INSERT
statement to add the following book details:
- Title: 1984
- Author: George Orwell
- Genre: Dystopian
- Published Year: 1949
- ISBN: 9780451524935
- Publisher: Secker & Warburg
- Pages: 328
- Language: English
- Availability: Yes
Solución
Cambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones
¿Todo estuvo claro?
¡Gracias por tus comentarios!
Sección 4. Capítulo 5
Cambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones