Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道是否可以在 MYSQL 中创建一个数据库、表或视图,以镜像或复制可通过 ODBC 连接访问的 Oracle DB 中的表。
我基本上希望能够从 MYSQL DB 中引用 Oracle DB 中的最新客户表。
我在想如果你可以让你的 Oracle 表成为 mySQL 中的同义词,这样的事情可能会起作用。(虽然我对 mySQL 语法不太熟悉)
CREATE TABLE tablename AS (SELECT * FROM othertable);