Công cụ lưu trữ FEDERATED đã giải quyết được sự cố của tôi. Tôi đã tạo một bảng bằng kết nối từ xa và nó giữ bản sao của bảng từ xa.
CREATE TABLE `domains` (
`id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`user_id` BIGINT(20) UNSIGNED NOT NULL
PRIMARY KEY (`id`),
INDEX `user_id` (`user_id`),
)
COLLATE='latin1_swedish_ci'
ENGINE=FEDERATED
DEFAULT CHARSET=latin1
CONNECTION='mysql://user:[email protected]:port/database/domains';
Cảm ơn inhan để hiển thị đúng hướng.