Snowflake Inner Join syntax
Command syntax:
SELECT R.* FROM Roster R
INNER JOIN PlayerStats P
ON R.LastName = P.LastName;
Example-2:
select t1.col1, t2.col1 from t1 \ninner join t2 on t2.col1 = t1.col1 \norder by 1,2;
nVector
posted onEnjoy great content like this and a lot more !
Signup for a free account to write a post / comment / upvote posts. Its simple and takes less than 5 seconds
Post Comment