Computer >> 컴퓨터 >  >> 프로그램 작성 >> MySQL

MySQL의 다른 테이블에서 개수 합계를 가져오는 단일 쿼리?

<시간/>

다른 테이블의 개수 합계를 얻으려면 UNION ALL을 사용하십시오. 먼저 테이블을 생성하겠습니다 -

mysql> create table DemoTable1
-> (
-> Id int,
-> Name varchar(30)
-> );
Query OK, 0 rows affected (1.55 sec)

삽입 명령을 사용하여 테이블에 일부 레코드 삽입 -

mysql> insert into DemoTable1 values(10,'Chris Brown');
Query OK, 1 row affected (0.83 sec)
mysql> insert into DemoTable1 values(20,'David Miller');
Query OK, 1 row affected (0.50 sec)
mysql> insert into DemoTable1 values(30,'John Adam');
Query OK, 1 row affected (0.83 sec)

select 문을 사용하여 테이블의 모든 레코드 표시 -

mysql> select *from DemoTable1;

출력

+------+--------------+
| Id   | Name         |
+------+--------------+
| 10   | Chris Brown  |
| 20   | David Miller |
| 30   | John Adam    |
+------+--------------+
3 rows in set (0.00 sec)

다음은 두 번째 테이블을 생성하는 쿼리입니다 -

mysql> create table DemoTable2
-> (
-> Amount int
-> );
Query OK, 0 rows affected (1.17 sec)

삽입 명령을 사용하여 테이블에 일부 레코드 삽입 -

mysql> insert into DemoTable2 values(100);
Query OK, 1 row affected (0.30 sec)
mysql> insert into DemoTable2 values(200);
Query OK, 1 row affected (0.14 sec)
mysql> insert into DemoTable2 values(300);
Query OK, 1 row affected (0.54 sec)

select 문을 사용하여 테이블의 모든 레코드 표시 -

mysql> select *from DemoTable2;

출력

+--------+
| Amount |
+--------+
| 100    |
| 200    |
| 300    |
+--------+
3 rows in set (0.00 sec)

다음은 단일 쿼리에서 서로 다른 테이블의 개수 합계를 구하는 방법입니다. −

mysql> select sum(AllCount) AS Total_Count
-> from
-> (
-> (select count(*) AS AllCount from DemoTable1)
-> union all
-> (select count(*) AS AllCount from DemoTable2)
-> )t;

출력

+-------------+
| Total_Count |
+-------------+
| 6           |
+-------------+
1 row in set (0.03 sec)