If I create table with primary key is index automatically created for the table or does that need doing separately.
i.e if this is the table ddl
 CREATE TABLE release(guid varchar(36) NOT NULL PRIMARY KEY,
name varchar(255),xmldata  CLOB(512 K))
do I also need to do
CREATE INDEX release_idx ON release(guid)
or not
(I'm using Derby a database that comes with Java)
 
     
    