Skip to content

Commit f6052bc

Browse files
Update README.md
1 parent 2fca54f commit f6052bc

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -242,8 +242,6 @@ LIMIT 10;
242242

243243
Let's investigate the earnings of these movies.
244244

245-
**CHALLENGE:** Can you build a query that shows only the *title*, *year* and *adj_lifetime_gross* columns from the *gross* table?
246-
247245
In their current state, the numbers in the *adj_lifetime_gross* column are hard to compare. We can add mathematical operators and numbers to the column name to perform the calculation. Let's calculate the adjusted lifetime gross column in billions of dollars (9 zeros):
248246

249247
```
@@ -262,7 +260,7 @@ FROM gross;
262260

263261
### Commenting Queries
264262

265-
Sometimes we want to be able to write a comment, text that won't be interpreted by the interface as a part of the query. Any text that follows two dashes *--* until the end of the ine is a comment.
263+
Sometimes we want to be able to write a comment, text that won't be interpreted by the interface as a part of the query. Any text that follows two dashes *--* until the end of the line is a comment.
266264

267265
```
268266
SELECT title, year, adj_lifetime_gross/1000000000 AS gross_billions -- 1 billion has 9 zeros

0 commit comments

Comments
 (0)