Snowflake Vs MS-SQL - Part 48 - Using
Using
Many times to pull data from multiple tables we need to use different JOINS along with joining conditions.
MS-SQL Server
We can use any JOIN, here I have used INNER JOIN. For any join, you have to mention columns in which you will join both tables.
In Snowflake, we can use a similar approach as above. However, Snowflake is a clause USING.
You can use this clause when both tables have a column with the same name. In this case, Store_ID is present in both tables.
Yogesh Shinde
Comments
Post a Comment