xudong963 commented on code in PR #16316:
URL: https://github.com/apache/datafusion/pull/16316#discussion_r2135455001


##########
docs/source/user-guide/sql/select.md:
##########
@@ -170,18 +170,72 @@ select * from x natural join x y;
 
 ### CROSS JOIN
 
-A cross join produces a cartesian product that matches every row in the left 
side of the join with every row in the
+A `CROSS JOIN` produces a cartesian product that matches every row in the left 
side of the join with every row in the
 right side of the join.
 
 ```sql
-select * from x cross join x y;
+SELECT * from x CROSS JOIN x y;

Review Comment:
   @jonathanc-n I think it makes sense haha



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to