Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 2027 invoked from network); 15 May 2007 17:25:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 15 May 2007 17:25:38 -0000 Received: (qmail 39502 invoked by uid 500); 15 May 2007 17:25:43 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 39476 invoked by uid 500); 15 May 2007 17:25:43 -0000 Mailing-List: contact derby-dev-help@db.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: Delivered-To: mailing list derby-dev@db.apache.org Received: (qmail 39467 invoked by uid 99); 15 May 2007 17:25:43 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 May 2007 10:25:43 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 May 2007 10:25:36 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 604E971406B for ; Tue, 15 May 2007 10:25:16 -0700 (PDT) Message-ID: <14696194.1179249916391.JavaMail.jira@brutus> Date: Tue, 15 May 2007 10:25:16 -0700 (PDT) From: "Bryan Pendleton (JIRA)" To: derby-dev@db.apache.org Subject: [jira] Assigned: (DERBY-4) "order by" is not supported for "insert ... select" In-Reply-To: <996458618.1096307672163.JavaMail.apache@nagoya> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DERBY-4?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bryan Pendleton reassigned DERBY-4: ----------------------------------- Assignee: Bryan Pendleton > "order by" is not supported for "insert ... select" > --------------------------------------------------- > > Key: DERBY-4 > URL: https://issues.apache.org/jira/browse/DERBY-4 > Project: Derby > Issue Type: New Feature > Components: SQL > Reporter: Christian d'Heureuse > Assigned To: Bryan Pendleton > Priority: Minor > > When filling a table with "insert ... select ...", "order by" cannot be specified. > There is not method to copy a table sorted into another table (except using export/import). This would be useful to optimize performance for big tables, or to create identity values that are ascending (related to another column). > Example: > create table temp1 ( > s varchar(10)); > insert into temp1 values 'x','a','c','b','a'; > create table temp2 ( > i integer not null > generated always as identity > primary key, > s varchar(10)); > insert into temp2 (s) > select s from temp1 order by s; > --> Error: "order by" is not allowed. > -- trying to use "group by" instead of "oder by": > insert into temp2 (s) > select s from temp1 group by s; > select * from temp2; > --> "group by" did not sort the table. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.