Re: how to select

Поиск
Список
Период
Сортировка
От Jaime Casanova
Тема Re: how to select
Дата
Msg-id c2d9e70e0507291224156c0719@mail.gmail.com
обсуждение исходный текст
Ответ на Re: how to select  ("Jonathan Villa" <jvilla@innovativesource.net>)
Ответы Re: how to select  ("Jonathan Villa" <jvilla@innovativesource.net>)
Список pgsql-general
On 7/29/05, Jonathan Villa <jvilla@innovativesource.net> wrote:
>
> Ok, this is odd...
>
> I tried ending with a semicolon before, and received this error
>
> ERROR:  parser: parse error at or near "select"
>
> I have to do it twice before I get it works...here's an example
>
> select project_name from project_group_list;
> ERROR:  parser: parse error at or near "select"
> select project_name from project_group_list;
> ...
> ...
> ...
>
> that's odd...
>
>

that's because you type a select without a semicolon then you write
one with the semicolon so the parser think both are only one command
but refused to execute that bad formed sentence and give you the
error... then you put another sentence and, of cuorse it executed...

you just show us 2 sentences one before the error and one after...

am i right?

--
Atentamente,
Jaime Casanova
(DBA: DataBase Aniquilator ;)

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

Предыдущее
От: Michael Fuhr
Дата:
Сообщение: Re: how to select
Следующее
От: "Jonathan Villa"
Дата:
Сообщение: Re: how to select