BUG #1948: Enhancement Request - INSERT syntax

From: "test_autoincrement" <tony(at)marston-home(dot)demon(dot)co(dot)uk>
To: pgsql-bugs(at)postgresql(dot)org
Subject: BUG #1948: Enhancement Request - INSERT syntax
Date: 2005-10-08 11:49:58
Message-ID: 20051008114958.0360DF0DB5@svr2.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs


The following bug has been logged online:

Bug reference: 1948
Logged by: test_autoincrement
Email address: tony(at)marston-home(dot)demon(dot)co(dot)uk
PostgreSQL version: 8.0.3
Operating system: Windows XP
Description: Enhancement Request - INSERT syntax
Details:

Currently the INSERT statement requires field names and field values to be
presented in separate lists whereas the UPDATE statement requires each field
and value to be presented in a single string (name='value').

The latter is more usable because if there is any validation failure with a
field it is easy to track down down the value in the query sting that goes
with a particular field name. Compare this with a failure on an INSERT
statement containing a large number of fields - you have to count through
the first list to get the index number of the field name, then you have to
count through the list of values to identify the one which goes with that
field name.

This is not user-friendly, and I think the SQL committee made a big mistake
in defining totally different structures for the INSERT and UPDATE
statements.

MySQL already offers this option, so why can't you?

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Bruce Momjian 2005-10-08 16:26:33 Re: BUG #1937: Parts of information_schema only accessible
Previous Message Tony Marston 2005-10-08 11:39:40 BUG #1947: Enhancement Request - CONCAT() function