Skip to content

Commit c2c3419

Browse files
committed
fix the last example
1 parent 7d917bd commit c2c3419

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

0043_how_to_format_sql.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ where
320320

321321
## 8) Nested queries
322322

323-
Do not use nested queries. Instead, use common table expressions to improve readability.
323+
Do not use nested queries. Instead, use common table expressions (CTEs, keyword `WITH`) to improve readability.
324324

325325
✅ Good:
326326

@@ -347,7 +347,6 @@ from (
347347
client_id,
348348
submission_date
349349
from main_summary
350-
from main_summaryain_summary
351350
where
352351
sample_id = '42'
353352
)

0 commit comments

Comments
 (0)