Is it possible to query across two connections in MySql? Or is there a MSSQL "linked server" equivalent?
My goal is this is pseudo code:
SELECT * FROM prd_connection.schema.t_table
INTO dev_connection.schema.t_table_dev
Is it possible to query across two connections in MySql? Or is there a MSSQL "linked server" equivalent?
My goal is this is pseudo code:
SELECT * FROM prd_connection.schema.t_table
INTO dev_connection.schema.t_table_dev