How to find the list of users and their count of occurrence in a table in Oracle

select user_id , count(user_id) from t_gsa_session_details_ratepro where login_time between '2025-01-01 00:00:00.000' and '2025-07-03 00:00:00.000' group by user_id having count(user_id)>=1 ;

Comments

Popular posts from this blog

Why to do a POC (Proof Of Concept)