Solution Review: Select The Journal

Let's study the solution to the challenge from the previous lesson.

We'll cover the following...

Solution: use SELECT

SELECT Body from journal_entries;

Explanation

Let’s take a look at what makes up this SQL statement.

  • Our statement starts
...