Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
nickdelgrosso committed Feb 23, 2024
1 parent 3a39b47 commit b7c3797
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1247,7 +1247,10 @@
"| :-- | :-- |\n",
"**`FROM \"a.csv\" a`** | Give a variable name `a` to a table loaded from \"a.csv\" |\n",
"| **`FROM \"a.csv\" a JOIN \"b.csv\" b ON a.id = b.a_id`** | A two-way join, matching the \"id\" column in table a with the \"a_id\" column in table b. |\n",
"| **`FROM \"a.csv\" a JOIN \"b.csv\" b ON a.id = b.a_id JOIN \"c.csv\" c ON a.id = c.a_id`** | A three-way join. |"
"| **`FROM \"a.csv\" a JOIN \"b.csv\" b ON a.id = b.a_id JOIN \"c.csv\" c ON a.id = c.a_id`** | A three-way join. |\n",
"\n",
"\n",
"Docs around Join: https://duckdb.org/docs/sql/query_syntax/from"
]
},
{
Expand Down

0 comments on commit b7c3797

Please sign in to comment.