Spaces:
Runtime error
Runtime error
Greg Wilson commited on
Commit ·
4644cb5
1
Parent(s): 809a7ea
minor formatting fix: back ticks in explanation for multiple choice
Browse files- sql/01_basic_select.py +1 -1
sql/01_basic_select.py
CHANGED
|
@@ -371,7 +371,7 @@ def _():
|
|
| 371 |
"Count the total number of rows",
|
| 372 |
],
|
| 373 |
correct_answer=1,
|
| 374 |
-
explanation="
|
| 375 |
)
|
| 376 |
)
|
| 377 |
_widget
|
|
|
|
| 371 |
"Count the total number of rows",
|
| 372 |
],
|
| 373 |
correct_answer=1,
|
| 374 |
+
explanation="* is shorthand for 'all columns'. SELECT * retrieves every column; the number of rows returned depends on whether you add WHERE, LIMIT, or other clauses.",
|
| 375 |
)
|
| 376 |
)
|
| 377 |
_widget
|