과제: Python을 사용하여 서로 다른 서버에 있는 두 MySQL 데이터베이스 간에 데이터베이스 조인을 수행합니다. MySQLDB.
해결책:
두 데이터베이스에 대한 연결을 설정하려면 별도의 연결 매개변수를 사용하여 각 서버에 대한 MySQLDB 연결을 생성합니다. 그러나 MySQLDB에는 서버 간 조인 기능이 없기 때문에 후속 조인 작업을 직접 수행할 수 없습니다.
대체 접근 방식:
FEDERATED Storage Engine:
MySQL은 FEDERATED 스토리지 엔진을 제공하므로 원격 데이터베이스의 테이블에 마치 테이블에 있는 것처럼 액세스할 수 있습니다. 현지의. 다음 구문을 사용하여 연합 테이블을 생성하십시오.
CREATE FEDERATED TABLE remote_table ( column_1 data_type, column_2 data_type, ... ) ENGINE=FEDERATED CONNECTION='mysql://username:password@server2/database_B';
연결된 서버 해결 방법:
MySQL을 사용할 수 없는 경우 연결을 지원하는 다른 DBMS를 활용할 수 있습니다. Microsoft SQL Server와 같은 서버. 여기서는 연결된 서버를 생성하여 데이터베이스 B에서 데이터베이스 A로 연결하고 미들웨어 DBMS 내의 쿼리를 사용하여 조인을 수행할 수 있습니다.
Python에서 구현:
에 따라 다름 선택한 접근 방식:
FEDERATED 엔진:
import MySQLdb # Create a connection to the local database conn_local = MySQLdb.connect(...) # Create a cursor for the local connection cursor_local = conn_local.cursor() # Execute a query to join the local table with the remote table cursor_local.execute(""" SELECT * FROM local_table INNER JOIN remote_table ON local_table.id = remote_table.id """) result = cursor_local.fetchall() **Linked Servers Workaround:**
import pymssql
conn_external = pymssql.connect(...)
cursor_external.execute("""
SELECT *
FROM linked_server_A.database_A.dbo.local_table
INNER JOIN linked_server_B.database_B.dbo.remote_table
ON linked_server_A.database_A. dbo.local_table.id = linked_server_B.database_B.dbo.remote_table.id
""")
결과 =cursor_external.fetchall()
위 내용은 MySQL을 사용하여 Python에서 원격 서버에서 데이터베이스 간 조인을 수행하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!