Skip to content
geeksforgeeks
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Tutorials
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
  • Practice
    • Build your AI Agent
    • GfG 160
    • Problem of the Day
    • Practice Coding Problems
    • GfG SDE Sheet
  • Contests
    • Accenture Hackathon (Ending Soon!)
    • GfG Weekly [Rated Contest]
    • Job-A-Thon Hiring Challenge
    • All Contests and Events
  • Python Tutorial
  • Interview Questions
  • Python Quiz
  • Python Glossary
  • Python Projects
  • Practice Python
  • Data Science With Python
  • Python Web Dev
  • DSA with Python
  • Python OOPs
Open In App
Next Article:
Column and Data Types in SQLAlchemy
Next article icon

Group by and count function in SQLAlchemy

Last Updated : 29 Jan, 2022
Comments
Improve
Suggest changes
Like Article
Like
Report

In this article, we are going to see how to perform Groupby and count function in SQLAlchemy against a PostgreSQL database in Python.

Group by and count operations are performed in different methods using different functions. Such kinds of mathematical operations are database-dependent. In PostgreSQL, Group by is performed using a function called group_by(), and count operation is performed using count(). In SQLAlchemy, generic functions like SUM, MIN, MAX are invoked like conventional SQL functions using the func attribute.

Some common functions used in SQLAlchemy are count, cube, current_date, current_time, max, min, mode etc.

Usage: func.count(). func.group_by(), func.max()

Creating Table for demonstration:

Import necessary functions from the SQLAlchemy package. And then establish a connection with the PostgreSQL database using create_engine() function as shown below, create a table called books with columns book_id and book_price.

Insert record into the tables using insert() and values() function as shown.

Python3
# import necessary packages import sqlalchemy from sqlalchemy import create_engine, MetaData, Table, Column, Numeric, Integer, VARCHAR from sqlalchemy.engine import result  # establish connections engine = create_engine(     "database+dialect://username:password@host:port/databasename")  # initialize the Metadata Object meta = MetaData(bind=engine) MetaData.reflect(meta)  # create a table schema books = Table(     'books', meta,     Column('bookId', Integer, primary_key=True),     Column('book_price', Numeric),     Column('genre', VARCHAR),     Column('book_name', VARCHAR) )  meta.create_all(engine)  # insert records into the table statement1 = books.insert().values(bookId=1, book_price=12.2,                                    genre='fiction',                                    book_name='Old age') statement2 = books.insert().values(bookId=2, book_price=13.2,                                    genre='non-fiction',                                     book_name='Saturn rings') statement3 = books.insert().values(bookId=3, book_price=121.6,                                    genre='fiction',                                    book_name='Supernova') statement4 = books.insert().values(bookId=4, book_price=100,                                    genre='non-fiction',                                     book_name='History of the world') statement5 = books.insert().values(bookId=5, book_price=1112.2,                                    genre='fiction',                                    book_name='Sun city')  # execute the insert records statement engine.execute(statement1) engine.execute(statement2) engine.execute(statement3) engine.execute(statement4) engine.execute(statement5) 

Output:

Sample table

Implementing GroupBy and count in SQLAlchemy

Writing a groupby function has a slightly different procedure than that of a conventional SQL query which is  shown below -

sqlalchemy.select([ Tablename.c.column_name, sqlalchemy.func.count(Tablename.c.column_name) ]).group_by(Tablename.c.column_name) 

Get the books table from the Metadata object initialized while connecting to the database and pass the SQL query to the execute() function and get all the results using fetchall() function and use a for loop to iterate through the results.

The below query returns the count of books in all genre:

Python3
# Get the `books` table from the  # Metadata object BOOKS = meta.tables['books']  # Write a SQL query using groupby  # and count function query = sqlalchemy.select([     BOOKS.c.genre,     sqlalchemy.func.count(BOOKS.c.genre) ]).group_by(BOOKS.c.genre)  # get all the records result = engine.execute(query).fetchall()  # print all the records for i in result:     print("\n", i) 

Output:

Result of  groupby and count function

Next Article
Column and Data Types in SQLAlchemy

J

jssuriyakumar
Improve
Article Tags :
  • Python
  • Python-SQLAlchemy
Practice Tags :
  • python

Similar Reads

  • SQLAlchemy Core - Functions
    SQLAlchemy provides a rich set of functions that can be used in SQL expressions to perform various operations and calculations on the data. SQLAlchemy provides the Function API to work with the SQL functions in a more flexible manner. The Function API is used to construct SQL expressions representin
    7 min read
  • SQLAlchemy Core - Conjunctions
    SQLAlchemy is a popular Python programming SQL toolkit and Object Relational Mapper that gives application developers the full power and flexibility of SQL in a Pythonic way.  SQLAlchemy ORM or object-relational mapper is a component that provides an abstraction layer over the SQL database which mak
    6 min read
  • Python SQLAlchemy - Group_by and return max date
    In this article, we are going to see how to use Group_by and return max date SQLAlchemy in Python. Installing SQLAlchemy SQLAlchemy is available via pip install package. pip install sqlalchemy However, if you are using flask you can make use of its own implementation of SQLAlchemy. It can be install
    2 min read
  • Column and Data Types in SQLAlchemy
    SQLAlchemy is an open-source library for the Python programming language that provides a set of tools for working with databases. It allows developers to interact with databases in a more Pythonic way, making it easier to write code that is both efficient and readable. Column TypesA column type in S
    4 min read
  • SQLAlchemy - Aggregate Functions
    In this article, we will see how to select the count of rows using SQLAlchemy using Python. Before we begin, let us install the required dependencies using pip: pip install sqlalchemySince we are going to use MySQL in this post, we will also install a SQL connector for MySQL in Python. However, none
    4 min read
  • Join with sum and count of grouped rows in SQLAlchemy
    SQLAlchemy is a popular Python ORM (Object-Relational Mapping) library that provides a convenient way to interact with databases. One of the common tasks when working with databases is to perform joins between tables and calculate aggregate values based on grouped rows. In this article, we will expl
    4 min read
  • Querying and selecting specific column in SQLAlchemy
    In this article, we will see how to query and select specific columns using SQLAlchemy in and For our examples, we have already created a Students table which we will be using: Selecting specific column in SQLAlchemy:Syntax: sqlalchemy.select(*entities) Where: Entities to SELECT from. This is typica
    4 min read
  • Floor division in SQLAlchemy
    In this article, we will see how to perform floor division in SQLAlchemy against a PostgreSQL database in python. Floor division is performed in different methods using different functions. Such kinds of mathematical operations are database-dependent. In PostgreSQL, floor division is performed using
    2 min read
  • SQLAlchemy: How to group by two fields and filter by date
    In this article, we will see how to group records by two fields and filter by date using SQLAlchemy in Python. Since we are going to use MySQL in this article, we will also install a SQL connector for MySQL in Python. However, none of the code implementations changes with change in the database exce
    3 min read
  • SQLAlchemy Group By With Full Child Objects
    In this article, we will explore how to use SQLAlchemy Group By With Full Child Objects in Python. SQLAlchemy provides several techniques to achieve SQLAlchemy Group By with Full Child Objects. SQLAlchemy Group By With Full Child ObjectsIn this section, we are making a connection with the database,
    9 min read
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences