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.
データベースD1とデータベースD2、およびデータベースのT1下のテーブルとデータベースの下のD1テーブルがある場合、MySQLでデータベースの下のビューを作成することは可能ですか。もしそうなら、構文を教えてください。T2D2T1D2
D1
D2
T1
T2
両方のデータベースが同じマシン上にあります。
CREATE VIEW `D2`.`example` AS SELECT * FROM `D1`.`T1`;