From derby-commits-return-15581-apmail-db-derby-commits-archive=db.apache.org@db.apache.org Thu May 10 17:30:06 2012 Return-Path: X-Original-To: apmail-db-derby-commits-archive@www.apache.org Delivered-To: apmail-db-derby-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id B3FFBC3E4 for ; Thu, 10 May 2012 17:30:06 +0000 (UTC) Received: (qmail 11541 invoked by uid 500); 10 May 2012 17:30:06 -0000 Delivered-To: apmail-db-derby-commits-archive@db.apache.org Received: (qmail 11515 invoked by uid 500); 10 May 2012 17:30:06 -0000 Mailing-List: contact derby-commits-help@db.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: "Derby Development" List-Id: Delivered-To: mailing list derby-commits@db.apache.org Received: (qmail 11507 invoked by uid 99); 10 May 2012 17:30:06 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 10 May 2012 17:30:06 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 10 May 2012 17:30:04 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 34AC923889B3; Thu, 10 May 2012 17:29:43 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1336804 - /db/derby/docs/trunk/src/ref/rrefsqlj35981.dita Date: Thu, 10 May 2012 17:29:43 -0000 To: derby-commits@db.apache.org From: chaase3@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120510172943.34AC923889B3@eris.apache.org> Author: chaase3 Date: Thu May 10 17:29:42 2012 New Revision: 1336804 URL: http://svn.apache.org/viewvc?rev=1336804&view=rev Log: DERBY-5628 Wrong syntax description in DELETE statement doc Modified a Reference Manual topic. Patch: DERBY-5628.diff Modified: db/derby/docs/trunk/src/ref/rrefsqlj35981.dita Modified: db/derby/docs/trunk/src/ref/rrefsqlj35981.dita URL: http://svn.apache.org/viewvc/db/derby/docs/trunk/src/ref/rrefsqlj35981.dita?rev=1336804&r1=1336803&r2=1336804&view=diff ============================================================================== --- db/derby/docs/trunk/src/ref/rrefsqlj35981.dita (original) +++ db/derby/docs/trunk/src/ref/rrefsqlj35981.dita Thu May 10 17:29:42 2012 @@ -26,9 +26,9 @@ DELETES
Syntax { - DELETE FROM table-Name [[AS] correlation-Name] + DELETE FROM table-Name [[AS] correlation-Name] [WHERE clause] | - DELETE FROM table-Name WHERE CURRENT OF + DELETE FROM table-Name WHERE CURRENT OF clause }

The first syntactical form, called a searched delete, removes all rows identified by the table name and WHERE clause.