-1

如果我有数据库test1和数据库test2,数据库test1下的表employee1和数据库test2下的表employee2,是否可以在MySQL中创建数据库test1下的employee2视图。如果是这样,你能告诉我语法吗?我还想在 test2 表中获取一些列和列是否可能?

4

1 回答 1

0

CREATE VIEW test1.emp2_view as select * from test2.employee2;

于 2013-01-23T10:38:11.853 回答