FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
Doctrine QueryBuilder Methods Cheat Sheet
How-ToWeb Development

Doctrine QueryBuilder Methods Cheat Sheet

via Dev.toVladislav Malikov3h ago

I've put together this quick QueryBuilder cheat sheet so you don't have to dig through Doctrine docs or source code every time you need a method reference. Contents Overview: SELECT : Field selection and DISTINCT options; FROM & JOI N: Table setup and join types ( INNER , LEFT , RIGHT ); WHERE/HAVING : Conditions with AND / OR logic; GROUP/ORDER : Grouping, sorting with reset controls; CRUD : INSERT , UPDATE , DELETE operations; Advanced : UNION (DBAL 4.x), CTE, LIMIT / OFFSET , caching. 1. SELECT select(string ...$expressions) — Defines SELECT fields, overwriting any previous selection. // SELECT u.id, u.name, u.email FROM ... $qb -> select ( 'u.id' , 'u.name' , 'u.email' ); addSelect(string $expression, string ...$expressions) — Appends fields to existing SELECT clause. // SELECT u.id, p.title, p.content FROM ... $qb -> select ( 'u.id' ) -> addSelect ( 'p.title' , 'p.content' ); distinct(bool $distinct = true) — Adds/removes DISTINCT to eliminate duplicate rows. // SELECT DISTINCT u.

Continue reading on Dev.to

Opens in a new tab

Read Full Article
0 views

Related Articles

The Art of Motivation and Inspiration ✨
How-To

The Art of Motivation and Inspiration ✨

Medium Programming • 1h ago

When Understanding Comes Later
How-To

When Understanding Comes Later

Medium Programming • 1h ago

Top 10 Skills Every Developer Must Learn in 2026
How-To

Top 10 Skills Every Developer Must Learn in 2026

Medium Programming • 1h ago

If you are using context.Context Like this, You-re doing it wrong
How-To

If you are using context.Context Like this, You-re doing it wrong

Medium Programming • 3h ago

How to Simulate Billiards and Similar Systems
How-To

How to Simulate Billiards and Similar Systems

Dev.to • 4h ago

Discover More Articles