использовать псевдоним столбца, который имеет более (раздел) в предложении где - PullRequest
0 голосов
/ 23 мая 2018

Привет, может кто-нибудь помочь мне в этом запросе, как добавить total_pallet_id> = 80 в операторах where.

Спасибо за вашу помощь, большое спасибо.

Ответы [ 2 ]

0 голосов
/ 23 мая 2018
SELECT * FROM
(
    select To_Char(c.last_event_date,'MM/DD/YYYY') as lastDate, 
    a.phase, a.kitting_code, a.carton_id || a.kitting_code as StorePalletID,
    SUM(COUNT(*)) OVER(PARTITION BY a.carton_id ||  a.kitting_code) AS 
    total_pallet_id,
    c.cass_id,c.last_event_date
    from ods.carton_master a join ods.carton b on  a.carton_id = b.carton_id 
    join ods.cass_event_master_vw c on b.cass_id = c.cass_id 
    where a.carton_id like 'S%' 
    and a.complete = 'Y'
    and c.last_event_date >= '2018-04-14 15:13:50' AND c.last_event_date < 
    '2018-05-22 15:13:50'
    Group by lastDate, a.phase, a.kitting_code, a.carton_id || a.kitting_code, 
    c.cass_id,c.last_event_date        
) t
WHERE total_pallet_id>=80
ORDER BY lastDate,  phase, kitting_code
0 голосов
/ 23 мая 2018

Вам необходимо использовать подзапрос или CTE:

with t as (
      < your query here >
     )
select t.*
from t
where total_pallet_id >= 80;
...