Hi,
Could someone please advice on the correct syntax for creating a View in DB2 that will access other db2 databases in the same server.
i have tried the following:
CREATE VIEW testview AS
SELECT
table1.col2,
table3.col6
FROM
Database.Schema.table AS mytable;
this code returns an error "undefined name", any assistance in this regard would be greatly appreciated.
Thank you in advance.
Shai.