PostgreSQL
 sql >> डेटाबेस >  >> RDS >> PostgreSQL

गणना करें कि पोस्टग्रेज में कॉलम विशिष्ट मान में कहां बदलता है

lag का प्रयोग करें पिछली पंक्ति पर मान प्राप्त करने और उसके बाद शर्तों के आधार पर गिनने के लिए।

select count(*)
from (select action_date,action,lag(action) over(order by action_date) as prev_action
      from t
     ) t
where (action<>prev_action and action=1) or (action=1 and prev_action is null)

या इसे

. के रूप में सरल बनाया जा सकता है
select 
count(case when lag(action) over(order by action_date) is null then and action = 1 then 1
           when lag(action) over(order by action_date) is not null and lag(action) over(order by action_date) <> action and action = 1 then 1 
      end) as cnt
from t



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. PostgreSQL लेनदेन के भीतर वास्तविक समय कैसे प्राप्त करें?

  2. स्ट्रक्चरस्कैन के साथ संरचना में पोस्टग्रेस्क्ल सरणी प्राप्त करें

  3. कैसे pg_restore

  4. PostgreSQL 8.3 के लिए PL/Ruby इंस्टॉल करना

  5. Postgresql ट्रंकेशन स्पीड