Pushing data into one table from another in Snowflake

Most of us have run across the scenario where we have data in one table, but we need the exact same data in another table in another database. In SQL Server, I’d do it this way: INSERT INTO TableB (FirstName, LastName) SELECT FirstName, LastName FROM TableA; Yes, pretty simple. Basically, we’re grabbing all of the…… Continue reading Pushing data into one table from another in Snowflake