misterstick
Programmer
please forgive my dumbness, but what's the difference between
and
mr s. <
Code:
create unique index index_name
on table_name
...;
and
Code:
alter table table_name add
constraint index_name unique
...;
mr s. <