ORMs (Eloquent in Laravel, Prisma in Node, ActiveRecord in Rails) generate SQL under the hood. Great for productivity, sometimes bad for performance (N+1 query problems). Rule: use the ORM for CRUD, drop to raw SQL for hot-path queries.
ORM
Also known as: object-relational mapping