Skip to content

Latest commit

 

History

History
4 lines (3 loc) · 200 Bytes

QUERIES.md

File metadata and controls

4 lines (3 loc) · 200 Bytes

Duplicate users:

  • select telegram_id, count(*) from users group by telegram_id having count(*) > 1
  • select telegram_username, count(*) from users group by telegram_username having count(*) > 1