1. 연결 쿼리라고도 하며, 여러 테이블의 데이터를 연결하여 결과 집합을 얻습니다. 하나의 테이블이 쿼리 결과를 만족할 수 없는 경우 통합 쿼리를 사용해야 합니다.
2. 전제, 조인트 테이블 사이에는 논리적 상관관계가 있어야 합니다.
인스턴스
-- 示例: select orders.order_id, orders.amt, customer.cust_name, customer.tel_no from orders, customer where orders.cust_id = customer.cust_id; -- 起别名 select a.order_id, a.amt, b.cust_name, b.tel_no from orders a, customer b where a.cust_id = b.cust_id;
위 내용은 mysql 통합 쿼리를 정의하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!