ORM Object-Relational Mapping
Library that lets you talk to the database via objects instead of SQL.
User.find({email: "..."}) instead of SELECT * FROM users WHERE .... Prisma (TS), SQLAlchemy (Python), ActiveRecord (Rails), Hibernate (Java). Convenient for simple queries; clunky for complex — many fall back to raw SQL.