Re: Case Insensitive

Поиск
Список
Период
Сортировка
От Andreas Kretschmer
Тема Re: Case Insensitive
Дата
Msg-id bc8b3f30-81d9-ae89-619c-de6af8ac23a8@a-kretschmer.de
обсуждение исходный текст
Ответ на Case Insensitive  (Sridhar N Bamandlapally <sridhar.bn1@gmail.com>)
Ответы Re: Case Insensitive  (Sameer Kumar <sameer.kumar@ashnik.com>)
Список pgsql-general

Am 28.03.19 um 09:20 schrieb Sridhar N Bamandlapally:
> Hi PG-General and Pgsql-Admin
>
> Can we achieve CASE INSENSITIVE in PostgreSQL?

test=# create extension citext;
CREATE EXTENSION
test=*# create table emp (eid int, ename citext);
CREATE TABLE
test=*# insert into emp values (1, 'aaa');
INSERT 0 1
test=*# insert into emp values (2, 'AAA');
INSERT 0 1
test=*# select * from emp where ename = 'aaa';
  eid | ename
-----+-------
    1 | aaa
    2 | AAA
(2 rows)


Regards, Andreas

-- 
2ndQuadrant - The PostgreSQL Support Company.
www.2ndQuadrant.com




В списке pgsql-general по дате отправления:

Предыдущее
От: Murtuza Zabuawala
Дата:
Сообщение: Re: Case Insensitive
Следующее
От: Ron
Дата:
Сообщение: Re: Case Insensitive