Re: why does this not give a syntax error?

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Scott Ribe <scott_ribe(at)elevated-dev(dot)com>
Cc: Postgresql General <pgsql-general(at)postgresql(dot)org>
Subject: Re: why does this not give a syntax error?
Date: 2013-06-10 18:52:36
Message-ID: 27588.1370890356@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Scott Ribe <scott_ribe(at)elevated-dev(dot)com> writes:
> pg 9.2:
> delete from "ExternalDocument" where id = 11825657and "Billed" = 'f';

"11825657and" is not any more lexically ambiguous than "11825657+".
It has to be two separate tokens, and that's how it's read.

regards, tom lane

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Scott Ribe 2013-06-10 19:16:05 Re: why does this not give a syntax error?
Previous Message Scott Ribe 2013-06-10 18:42:12 why does this not give a syntax error?