Mysql
 sql >> Teknologi Basis Data >  >> RDS >> Mysql

Menggunakan dua nilai agregat dari subkueri SELECT dalam satu kueri SELECT luar

Anda dapat menggabungkan 2 subkueri menjadi 1:

SELECT MAX(c.cust_id) AS max_nh_cust_id,
       MAX(a.avail_balance) AS max_nh_avail_balance 
FROM account a INNER JOIN customer c 
ON a.cust_id = c.cust_id 
WHERE c.state = 'NH'

dan bergabunglah seperti ini:

SELECT a.cust_id
FROM account a 
INNER JOIN customer c ON a.cust_id = c.cust_id
INNER JOIN (
  SELECT MAX(c.cust_id) AS max_nh_cust_id,
         MAX(a.avail_balance) AS max_nh_avail_balance 
  FROM account a INNER JOIN customer c 
  ON a.cust_id = c.cust_id 
  WHERE c.state = 'NH'
) t ON c.cust_id > t.max_nh_cust_id AND a.avail_balance > t.max_nh_avail_balance
WHERE c.state = 'MA'

Lihat demo .
Hasil:

> | cust_id |
> | ------: |
> |      13 |



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. SQL:Pilih catatan terakhir untuk setiap hari yang diberikan datetime

  2. R- Karakter Khusus tidak dimasukkan di mysql

  3. MySQL - nomor baris di recordset?

  4. Hitung desil di MySQL berdasarkan total

  5. Berapa banyak teks UTF-8 yang muat di bidang Teks MySQL?