Re: default value syntax - pg compared to? - Mailing list pgsql-sql

From Carl van Tast
Subject Re: default value syntax - pg compared to?
Date
Msg-id 37mqat0o6n65n1f2lbbg9frd0hftvl39a0@4ax.com
Whole thread Raw
In response to Re: default value syntax - pg compared to?  ("Josh Berkus" <josh@agliodbs.com>)
List pgsql-sql
On Mon, 12 Mar 2001 20:52:02 +0000 (UTC), josh@agliodbs.com ("Josh
Berkus") wrote:

>1. Unlike PostgreSQL, MSSQL server will not permit you to override an
>"Identity Value" auto-incrementing field;

That's almost correct. You cannot *update* an identity column, but you
can override it on insert if you use   SET IDENTITY_INSERT tablename ON

create table foo (id integer identity, txt varchar(10))
go
insert into foo (txt) values ('a')
insert into foo (txt) values ('b')
set identity_insert foo on
insert into foo (id, txt) values (10, 'c')
set identity_insert foo off
insert into foo (txt) values ('b')
select * from foo

id          txt        
----------- ---------- 
1           a
2           b
10          c
11          d

(4 row(s) affected)

.02 byCarl van Tast


pgsql-sql by date:

Previous
From: Patrick Welche
Date:
Subject: Re: Re: [GENERAL] MySQLs Describe emulator!
Next
From: Cliff Crawford
Date:
Subject: Re: SQL Dummy Needs Help