Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

183
Vistas
go-pg UnionAll - limit whole expression

I am trying to use .UnionAll method in go-pg library for golang.

    var model []Customer
    q0 := db.Model(&model).Where("name = ?", name0).Limit(4)
    q1 := db.Model(&model).Where("name = ?", name1).Limit(3)
    var result []Customer
    if err := q0.UnionAll(q1).Limit(1).Select(&result); !as.NoError(err) {
        return
    }

This code produces the query:

(SELECT "customer"."id", "customer"."name" FROM customers AS "customer" WHERE (name = 'customer 1deificatory zonoid reprepare alacrify serenissime') 
LIMIT 1) 
UNION ALL 
(SELECT "customer"."id", "customer"."name" FROM customers AS "customer" WHERE (name = 'customer 2fordless ferroboron radiability dandizette smutch'
LIMIT 3)
)

But I expect it to be:

(SELECT "customer"."id", "customer"."name" FROM customers AS "customer" WHERE (name = 'customer 1deificatory zonoid reprepare alacrify serenissime') 
LIMIT 4) 
UNION ALL 
(SELECT "customer"."id", "customer"."name" FROM customers AS "customer" WHERE (name = 'customer 2fordless ferroboron radiability dandizette smutch')
LIMIT 3)

LIMIT 1

So how to use go-pg to get raw SQL query which I expect? The thing is I can't apply the Limit 1 expression to the whole query for some reason. Also, my Limit 4 is not applied correctly to the first union all member. My whole code is here.

over 4 years ago · Santiago Trujillo
1 Respuestas
Responde la pregunta

0

I believe this query does the trick for you.

if err := db.Model().With("union_q", q0.UnionAll(q1)).Table("union_q").Limit(1).Select(&result); !as.NoError(err) {
    return
}

The query isn't exactly what you wanted to be and as far as I know, the current version of go-pg can't generate that query. But this query does exactly what you wanted.

over 4 years ago · Santiago Trujillo Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda