sql >> Database teknologi >  >> RDS >> Mysql

Brug af to samlede værdier fra en SELECT-underforespørgsel i en enkelt ydre SELECT-forespørgsel

Du kan flette de 2 underforespørgsler til 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'
 

og slutte sig til det sådan her:

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'
 

Se demoen .
Resultater:

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


  1. Hvordan Random() virker i PostgreSQL

  2. Sådan importeres og eksporteres CSV-filer ved hjælp af PHP og MySQL

  3. Slut dig til mig for en Microsoft Access med SQL Server Academy-session

  4. Følgere/følgende databasestruktur