PostgresQL 9.2 table query - underscores

Поиск
Список
Период
Сортировка
От Victoria S.
Тема PostgresQL 9.2 table query - underscores
Дата
Msg-id 20130716150422.4c4320fe@victoria
обсуждение исходный текст
Ответы Re: PostgresQL 9.2 table query - underscores  (Gavin Flower <GavinFlower@archidevsys.co.nz>)
Re: PostgresQL 9.2 table query - underscores  (John R Pierce <pierce@hogranch.com>)
Re: PostgresQL 9.2 table query - underscores  (Arjen Nienhuis <a.g.nienhuis@gmail.com>)
Re: PostgresQL 9.2 table query - underscores  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-general
Hello: My first post; a Postgres newbie ...

I am teaching myself PostgresQL using a trial database, and I am having trouble with underscores:

IN the following example,

development=# SELECT created_at, username FROM tweets;
            created_at             |     username
-----------------------------------+-------------------
 created_at                        | username
 “Tue, 12 Feb 2013 08:43:09 +0000″ | “_DreamLead”
 “Tue, 12 Feb 2013 07:31:06 +0000″ | “GunnarSvalander”
 “Tue, 12 Feb 2013 07:30:24 +0000″ | “GEsoftware”
 “Tue, 12 Feb 2013 06:58:22 +0000″ | “adrianburch”
 “Tue, 12 Feb 2013 05:29:41 +0000″ | “AndyRyder5″
 “Tue, 12 Feb 2013 05:24:17 +0000″ | “AndyRyder5″
 “Tue, 12 Feb 2013 01:49:19 +0000″ | “Brett_Englebert”
 “Tue, 12 Feb 2013 01:31:52 +0000″ | “Brett_Englebert”
 “Mon, 11 Feb 2013 23:15:05 +0000″ | “NimbusData”
 “Mon, 11 Feb 2013 22:15:37 +0000″ | “SSWUGorg”
(11 rows)

... why doesn't his work? :

development=# SELECT created_at, username FROM tweets WHERE username='_DreamLead';
 created_at | username
------------+----------
(0 rows)

I understand why this works:

development=# SELECT created_at, username FROM tweets WHERE username LIKE '%_DreamLead%';
            created_at             |   username
-----------------------------------+--------------
 “Tue, 12 Feb 2013 08:43:09 +0000″ | “_DreamLead”
(1 row)

... but can't I tweak this,to work, somehow [without using the WHERE or SIMILAR TO clause(s)]? :

SELECT created_at, username FROM tweets WHERE username='_DreamLead';

 ===============================================================


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

Предыдущее
От: salah jubeh
Дата:
Сообщение: Re: Upgrading from Pg 9.1 to 9.2
Следующее
От: Gavin Flower
Дата:
Сообщение: Re: PostgresQL 9.2 table query - underscores