Cannot rename column neither exclude column in snowflake sql select query
Below query is working great Example 1 SELECT * EXCLUDE company_name FROM employee Example 2 SELECT * RENAME id as emp_id FROM employee But when I am trying to select with table alias name then it is not working and getting SQL error, I want to use alias for some joins and I am having … Read more