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 inner join t2 on t2.col1 = t1.col1 order by 1,2;
nVector
posted on 04 Oct 19Enjoy 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