Can MySql 5.0 views use tables located on another server? What is the syntax for creating such a view?
Federated Tables: http://dev.mysql.com/doc/refman/5.0/en/federated-storage-engine.html
This allows you to remotely access the table as if the remote table was a local table. It has its limitations, but it seems to meet my needs.
Yes, you can create objects in one database that reference another database and even another host. The syntax for this works something like this:
USE localhost.myDB; SELECT * FROM host2.db.tableName;
Source: https://habr.com/ru/post/1697986/More articles:User-configurable security on an ASP.NET multi-tenant website - securityHow else can an architectural document be presented, moreover, as a series of representations? - language-agnosticHow to implement authentication with Querystring - authenticationHave you ever used CSLA? - ormCould not start debugging in Visual Studio 2005 - visual-studioIs it possible to enable / deploy one Java EE application (war file) inside another? - javaasp.net: is it possible to split large ASP.NET pages into parts? - asp.netBlock Active Directory accounts programmatically - c #What is monitored and how should it be done? - .netHow can I unzip the newest file in a directory in a .bat file? - build-processAll Articles