Re: Porting from MySQL.

Поиск
Список
Период
Сортировка
От Marko Kreen
Тема Re: Porting from MySQL.
Дата
Msg-id 20011004212653.A8808@l-t.ee
обсуждение исходный текст
Ответ на Porting from MySQL.  (Danny Appaiah <danny@indvalley.com>)
Список pgsql-ports
On Thu, Oct 04, 2001 at 04:10:26PM +0530, Danny Appaiah wrote:
> My Table Name: NetworkName
> Column Name1 : NetCode
> Column Name2 : NetworkName

By default PostgreSQL turns all table/column names to lowercase,
unless you tell it not to:

marko=# create table tEst (vAl text);
CREATE
marko=# create table "tEst2" ("vAl" text);
CREATE
marko=# \d test
        Table "test"
 Attribute | Type | Modifier
-----------+------+----------
 val       | text |

marko=# \d "tEst2"
        Table "tEst2"
 Attribute | Type | Modifier
-----------+------+----------
 vAl       | text |


--
marko


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

Предыдущее
От: "Scott W. Hill"
Дата:
Сообщение: Re: postgres on MacOS X 10.1
Следующее
От: Tiaan Wessels
Дата:
Сообщение: failed to compile on irix6.5 with gcc