• Home
  • Jobs
  • Courses
  • Questions
  • Teachers
  • For business
  • ES/EN

0

1.5K
Views
TypeORM select with case insensitive distinct

I'm trying to create a TypeORM query builder that connects to a postgresql DB to get all unique names in the DB. My query looks like this

names = await this._context.manager
        .getRepository(Names)
        .createQueryBuilder('names')
        .select('DISTINCT ON (names.name) names.name')
        .orderBy('names.name', 'ASC')
        .getRawMany();

Right now this query fetches all names in the DB but it's case sensitive so it can't sort out duplicates like 'Jane Doe' from 'jane doe'. So far i've tried to make the distinct upper/lowercase like this: .select('DISTINCT ON LOWER(names.name) names.name') but that doesn't work. I also found a .distinctOn() function but i couldn't make that case insensitive either.

I'm new to typeORM so i'm at a bit of a loss on where to go from here, any ideas?

I'm working in Node.JS towards a postgresql DB if that makes a difference.

3 months ago ·

Santiago Trujillo

2 answers
Answer question

0

The subject of this issue is postgres rather than typeORM. Similar question: Eliminating Duplicate rows in Postgres.

In your case the correct syntax is:

names = await this._context.manager
        .getRepository(Names)
        .createQueryBuilder('names')
        .select('DISTINCT ON (LOWER(names.name)) names.name')
        .orderBy('LOWER(names.name)', 'ASC')
        .getRawMany();
 
3 months ago · Santiago Trujillo Report

0

With Repository, I did the case insensitive search with postgres as database using ILIKE operator in this way

const planning_groups: any[] =
    await this.planningGroupRepository.find({
        where: `"tenant_id" ILIKE '${tenantId}'` 
    });

where tenant_id is a column name and tenantId is a keyword to search for.

3 months ago · Santiago Trujillo Report
Answer question
Find remote jobs
Loading

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post job Plans Our process Sales
Legal
Terms and conditions Privacy policy
© 2022 PeakU Inc. All Rights Reserved.