Subject | RE: [IBO] What is wrong? |
---|---|
Author | Claudio Valderrama C. |
Post date | 2001-04-21T03:14:37Z |
> -----Original Message-----Download the IB documentation and read LangRef. This is not valid syntax.
> From: André Poisson [mailto:a_poisson@...]
> Sent: Viernes 20 de Abril de 2001 23:01
>
> Using IB_WISQL.
>
> UPDATE FACTURE INNER JOIN CLIENTS ON FACTURE.NoTelephone =
> CLIENT.NoTelephone SET FACTURE.NoClient = Client.NoClient;
You can't make a JOIN in an UPDATE. You either write a more complex SQL
sentence or a stored procedure (it will be faster).
C.