Snowflake Vs MS-SQL - Part 15 - Exclude
Exclude
Suppose one of your tables has many columns and when you are selecting the data you don't want all those columns and exclude a couple of columns then you have to specify the list of columns in the SELECT clause.

You can provide the list of columns that you don't want in the select clause after EXCLUDE.
If you are using JOIN to fetch records, in that case also you can use this EXCLUDE clause to remove columns from two or more tables.
Comments
Post a Comment