Subject | Re: [ib-support] Is there any UNIQUE limit? |
---|---|
Author | Matteo Giacomazzi |
Post date | 2002-07-03T08:16:46Z |
Hi Raul,
I've just noticed that in your solution there's something strange:
RC> create table FILES (
RC> id integer not null,
RC> file varchar(200) not null,
RC> constraint FILES_PK primary key (id, file)
RC> );
in this way, id could be the same if file is different, right?
I mean:
(1, 'testFile.html')
(1, 'testFile_2.html')
Are both valid records, right?
Just a doubt...
Thank you!
Kind regards,
--
Matteo
mailto:matteo.giacomazzi@...
ICQ# 24075529
I've just noticed that in your solution there's something strange:
RC> create table FILES (
RC> id integer not null,
RC> file varchar(200) not null,
RC> constraint FILES_PK primary key (id, file)
RC> );
in this way, id could be the same if file is different, right?
I mean:
(1, 'testFile.html')
(1, 'testFile_2.html')
Are both valid records, right?
Just a doubt...
Thank you!
Kind regards,
--
Matteo
mailto:matteo.giacomazzi@...
ICQ# 24075529